/* Auth Pages Styles */
.content {
    padding: 80px 0 60px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #7d93b2;
    margin-bottom: 0;
}

.separator {
    width: 60px;
    height: 3px;
    margin: 20px auto;
}

.info-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}

.info-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-section p {
    color: #7d93b2;
    margin-bottom: 20px;
    line-height: 1.6;
}

.auth-alert {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 13px;
    display: block;
}

.auth-alert.success-notif {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-alert.error-notif {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content {
        padding: 60px 0 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .info-section {
        margin-top: 30px;
    }
}
