.auth-body {
    background: #080706;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.auth-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.auth-container {
    background: #171411;
    border: 2px solid #5B4428;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 60px rgba(181,138,69,0.08), inset 0 0 40px rgba(0,0,0,0.3);
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(181,138,69,0.15);
    border-radius: 2px;
    pointer-events: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    color: #B58A45;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.auth-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #E8D7B0;
    letter-spacing: 3px;
    font-weight: 700;
}

.auth-ornament {
    color: #5B4428;
    font-size: 16px;
    margin: 15px 0;
    letter-spacing: 8px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #9C8B6E;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background: #080706;
    border: 1px solid #5B4428;
    border-radius: 2px;
    color: #E8D7B0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #B58A45;
    box-shadow: 0 0 10px rgba(181,138,69,0.2);
}

.auth-form .btn {
    width: 100%;
    padding: 14px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #B58A45;
    background: transparent;
    color: #B58A45;
    font-size: 14px;
}

.auth-form .btn:hover {
    background: #B58A45;
    color: #080706;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #9C8B6E;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #B58A45;
}

.auth-links p {
    margin-bottom: 8px;
}

.auth-back {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #5B4428;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
}

.auth-back:hover { color: #B58A45; }

/* Registration Steps */
.reg-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0;
}

.reg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    transition: all 0.3s;
}

.reg-step--active {
    opacity: 1;
}

.reg-step--done {
    opacity: 0.7;
}

.reg-step__circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #5B4428;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: #5B4428;
    background: transparent;
    transition: all 0.3s;
}

.reg-step--active .reg-step__circle {
    border-color: #B58A45;
    color: #B58A45;
    box-shadow: 0 0 15px rgba(181,138,69,0.3);
}

.reg-step--done .reg-step__circle {
    border-color: #4a8b3f;
    color: #4a8b3f;
    background: rgba(74,139,63,0.1);
}

.reg-step__label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #9C8B6E;
    text-transform: uppercase;
}

.reg-step__line {
    width: 60px;
    height: 1px;
    background: #5B4428;
    margin: 0 12px;
    margin-bottom: 22px;
    transition: all 0.3s;
}

.reg-step__line--active {
    background: #B58A45;
    box-shadow: 0 0 6px rgba(181,138,69,0.3);
}

/* Registration panels */
.reg-panel {
    transition: opacity 0.3s;
}

.reg-panel--hidden {
    display: none;
}

.reg-panel--active {
    display: block;
}

/* Phone input */
.auth-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    background: #080706;
    border: 1px solid #5B4428;
    border-radius: 2px;
    color: #E8D7B0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-form input[type="tel"]:focus {
    outline: none;
    border-color: #B58A45;
    box-shadow: 0 0 10px rgba(181,138,69,0.2);
}

@media (max-width: 700px) {
    .reg-full__box form [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .reg-full__box h2 {
        font-size: 1.8rem !important;
    }
}
