.auth-card {
    background: #fff;
    width: 100%;
}

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

.auth-logo {
    height: 64px;
    margin-bottom: 12px;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.field-group {
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.field-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #bfdbfe;
    border-radius: 10px;
    padding: 0 14px;
    height: 46px;
    background: #f0f7ff;
    transition: border-color 0.2s;
}

.field-input-wrap:focus-within {
    border-color: #3b82f6;
}

.field-icon {
    color: #3b82f6;
    font-size: 15px;
    flex-shrink: 0;
}

.field-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #111827;
    outline: none;
}

.password-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #9ca3af;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.password-toggle:hover {
    color: #6b7280;
}

.auth-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.auth-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
}

.auth-link {
    font-size: 13px;
    color: #185FA5;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    height: 46px;
    background: linear-gradient(90deg, #185FA5, #0F6E56);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 16px;
    color: #9ca3af;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-footer-text {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #9ca3af;
}