/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Conteneur principal */
.main-container {
    display: flex;
    width: 100%;
    max-width: 900px;
}

/* Conteneur de connexion */
.login-container {
    width: 350px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 200px;
    margin-bottom: 30px;
}

/* Formulaire de connexion */
.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.login-btn:hover {
    background-color: #165eab;
}

/* Liens */
.forgot-password a,
.signup-link a {
    font-size: 12px;
    color: #1877f2;
    text-decoration: none;
}

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.signup-link {
    text-align: center;
    margin-top: 10px;
}

/* Conteneur de l'image de fond (div de droite) */
.background-container {
    display: none;
    flex: 1;
    background: url('https://www.facebook.com/images/fb_icon_325x325.png') no-repeat center center;
    background-size: cover;
    border-radius: 0 8px 8px 0;
}

/* Afficher l'image de fond sur les écrans plus larges */
@media (min-width: 1024px) {
    .background-container {
        display: block;
    }
    .login-container {
        width: 400px;
    }
}
