body.bg-auth {
    background: #151b23;
    min-height: 100vh;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-main {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-card {
    background: #23272f;
    border-radius: 12px;
    box-shadow: 0 8px 36px #000a;
    padding: 36px 32px 30px 32px;
    max-width: 370px;
    width: 100%;
}
.auth-header {
    text-align: center;
    margin-bottom: 24px;
}
.auth-header h3 {
    color: #ff9100;
    font-size: 1.75rem;
    margin-bottom: 0.3em;
    letter-spacing: 1px;
}
.auth-form .form-group {
    margin-bottom: 18px;
}
.auth-form label {
    color: #d3d3d3;
    font-weight: 500;
    font-size: 1.05em;
    margin-bottom: 4px;
    display: block;
}
.auth-form input[type="email"], .auth-form input[type="password"], .auth-form input[type="text"] {
    width: 100%;
    background: #181d22;
    color: #fff;
    border: 1.5px solid #393939;
    border-radius: 8px;
    padding: 12px 13px;
    font-size: 1.06em;
    outline: none;
    transition: border 0.15s;
}
.auth-form input:focus {
    border: 1.5px solid #ff9100;
}
.btn-auth {
    background: #ff9100;
    color: #232323;
    border: none;
    border-radius: 8px;
    padding: 13px 0;
    width: 100%;
    font-weight: bold;
    font-size: 1.11rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.18s;
}
.btn-auth:hover {
    background: #ffb144;
}
.auth-links {
    text-align: center;
    margin-top: 20px;
}
.auth-links a {
    color: #ff9100;
    text-decoration: none;
    margin: 0 2px;
    font-size: 1em;
    font-weight: 500;
}
.auth-links a:hover {
    text-decoration: underline;
    color: #fff;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.wizard-step {
    display: inline-block;
    background: #232323;
    border: 2.2px solid #ff9100;
    color: #ff9100;
    width: 26px;
    height: 26px;
    line-height: 22px;
    border-radius: 50%;
    font-size: 1.07em;
    text-align: center;
    font-weight: bold;
    margin: 0 2px;
    transition: all 0.19s;
}
.wizard-step.wizard-active, .wizard-step.wizard-done {
    background: #ff9100;
    color: #232323;
    border-color: #ff9100;
}
.wizard-bar {
    width: 30px;
    height: 3px;
    background: #444;
    margin: 0 4px;
    border-radius: 3px;
}
