.auth-body {
    background: #F9F6F0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.auth-container {
    max-width: 520px;
    width: 100%;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo-img {
    height: 70px;
    width: auto;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    font-size: 14px;
    color: #8C8C8C;
    margin-bottom: 32px;
    text-align: center;
}

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

.auth-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.auth-form-group label .required {
    color: #dc3545;
    margin-left: 3px;
}

.auth-form-group input,
.auth-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #EBE6DE;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    background: white;
}

.auth-form-group input:focus,
.auth-form-group select:focus {
    outline: none;
    border-color: #c0ad82;
    box-shadow: 0 0 0 3px rgba(192, 173, 130, 0.1);
}

.auth-form-group input.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.auth-form-group .error-message {
    font-size: 11px;
    color: #dc3545;
    margin-top: 6px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #c0ad82;
}

.checkbox-group label {
    font-size: 13px;
    color: #666;
    margin: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: #c0ad82;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: #c0ad82;
    border: none;
    border-radius: 12px;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth:hover {
    background: #C0AD82;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 173, 130, 0.3);
}

.btn-auth:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    margin-top: 28px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #EBE6DE;
}

.auth-footer a {
    color: #C0AD82;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #8C8C8C;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #C0AD82;
}

.alert-custom {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error {
    background: #FEF2F2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.alert-success {
    background: #ECFDF5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #999;
    font-size: 16px;
}

.toggle-password:hover {
    background: #e8e8e8;
    color: #C0AD82;
}

.toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

.toggle-password i {
    font-size: 16px;
    pointer-events: none;
}

.toggle-password-minimal {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #bbb;
    font-size: 18px;
}

.toggle-password-minimal:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #C0AD82;
}

.toggle-password-minimal:active {
    transform: translateY(-50%) scale(0.95);
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: #EBE6DE;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

.strength-text {
    font-size: 11px;
    color: #8C8C8C;
}

.strength-weak .strength-bar-fill {
    width: 25%;
    background: #dc3545;
}
.strength-medium .strength-bar-fill {
    width: 50%;
    background: #ffc107;
}
.strength-strong .strength-bar-fill {
    width: 75%;
    background: #28a745;
}
.strength-very-strong .strength-bar-fill {
    width: 100%;
    background: #28a745;
}

@media (max-width: 560px) {
    .auth-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .btn-auth {
        padding: 13px;
        font-size: 15px;
    }
}