/* 
 * Authentication Pages Styles - Enhanced White & Light Red Theme
 * Login and Registration
 */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.auth-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 550px;
    width: 100%;
    padding: 3.5rem;
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 2.3rem;
    color: #000000 !important;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--light-red);
}

.auth-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.auth-link:hover {
    text-decoration: underline;
    color: var(--dark-red);
}

.temp-password-box {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    text-align: center;
    border: 2px solid var(--light-red);
}

.temp-password {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin: 0.8rem 0;
}

.password-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
    font-weight: 500;
}

.alert {
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #ffebee 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--lighter-red) 100%);
    color: var(--dark-red);
    border-left: 4px solid var(--primary-red);
}

@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1.5rem;
    }
    
    .auth-container {
        padding: 2.5rem 2rem;
        max-width: 500px;
    }
    
    .auth-title {
        font-size: 2rem;
    }
    
    .auth-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .temp-password {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-wrapper {
        padding: 1rem;
    }
    
    .auth-container {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }
    
    .auth-title {
        font-size: 1.7rem;
    }
    
    .auth-subtitle {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .temp-password {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .temp-password-box {
        padding: 1.2rem;
    }
}

