/* Auth Pages - Login & Signup */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.auth-logo img {
    max-width: 150px;
}

.auth-title {
    font-size: 2rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--color-text-dark-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-label {
    color: #555;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.4px;
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(120, 57, 238, 0.1);
}

.btn-auth {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
}

.auth-link {
    text-align: center;
    color: var(--color-text-dark-muted);
}

.auth-link a {
    color: var(--color-purple);
    font-weight: 500;
    text-decoration: none;
}

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

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

.auth-header i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

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

.auth-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.info-box {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.info-box.warning {
    background: #fef3c7;
}

.info-box.warning p {
    color: #92400e;
    font-weight: 600;
}

.info-box.warning a {
    color: #92400e;
    text-decoration: underline;
}

.user-email {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.user-email strong {
    color: #1f2937;
    font-weight: 500;
}

.form-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.errorlist li {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.forgot-password-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #6b7280;
}

.forgot-password-link:hover {
    color: var(--color-purple);
}

/* Password Strength Indicator */
.password-strength-indicator {
    margin-top: 0.75rem;
}

.strength-bar-container {
    width: 100%;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

.strength-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.strength-criteria {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.strength-criteria li {
    font-size: 0.8rem;
    transition: color 0.2s ease;
}
