/* Auth Pages Styles */

.auth-body {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    width: 100%;
}

.auth-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6b7280;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.forgot-link {
    font-weight: 400;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.8125rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-form .form-group input::placeholder {
    color: #9ca3af;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

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

.auth-form .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.terms-text {
    font-size: 0.8125rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.5rem;
}

.terms-text a {
    color: #2563eb;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.auth-footer p {
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-footer a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

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

/* Features List (Signup) */
.auth-features {
    color: #fff;
    max-width: 320px;
}

.auth-features h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-features ul {
    list-style: none;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.auth-features svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Alert */
.auth-form .alert {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        align-items: center;
    }

    .auth-features {
        display: none;
    }

    .auth-card {
        max-width: 100%;
    }
}
