/**
 * Styles pour la page Login
 * Extrait de views/login.php pour respecter le principe MVC
 * 
 * Auteur: IT JD SOLUTIONS
 * Date: 10 janvier 2026
 */

/* Container principal */
.login__wrapper {
    background: #f5f5f5;
}

/* Section gauche - Image */
.login__left-side {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.login__logo-container {
    padding: 20px 0 10px 0;
}

.login__logo-fidelishop {
    width: 150px;
    height: auto;
}

.login__logo-company {
    max-width: 220px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.login__image-container {
    padding-top: 0;
    padding-bottom: 4rem;
}

.login__image-wrapper {
    max-width: 500px;
}

.login__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Section droite - Formulaire */
.login__right-side {
    min-height: 100vh;
}

.login__right-side--default {
    background: linear-gradient(135deg, #0099FF 0%, #0088FF 100%);
}

/* Le background dynamique de l'entreprise est appliqué via style inline (légitime) */

.login__subtitle {
    opacity: 0.9;
}

/* Footer */
.login__footer {
    background: transparent !important;
}

.login__footer-text {
    font-size: 0.85rem;
    color: #000000 !important;
    opacity: 0.8;
}

/* Remember me et Forgot password - même style */
.login__remember-label {
    font-size: 0.9rem;
}

.login__forgot-link {
    text-decoration: none;
    font-size: 0.9rem;
}

.login__forgot-link:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .login__right-side {
        min-height: 100vh;
    }
}

