body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    
    
}


.form-section {
    background-color: #CFE2F0;
    padding: 40px;
    height: 100vh;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* .login-container {
    background-color: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    height: 100vh;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
} */

.content-section {
    display: none; /* Masqué par défaut */
    background-color: #0F70B7;
    width: auto;
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

/* .login-container {
    background-color: white;
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

.login-header {
    text-align: center;
    margin-top: 8%;
  
}

.login-header h1 {
  font-size: 50px;
   color: #1371B7;
   margin-bottom: 20px;
   
}


@media (min-width: 769px) {
    body {
        flex-direction: row;
    }
    
    .form-section {
        width: 30%;
    }
    
    .content-section {
        display: flex;
    }
}

.login-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #153C65;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #4a90e2;
    outline: none;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 10px;
}

.remember-me label {
    color: #153C65;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #3a7bc8;
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
}

.footer {
    color: white;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    margin-top: -50px;
}

.footer-links-form {
    margin-top: 10px;
}

.footer-links {
    margin-left: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
    
}

.input-with-icon {
    position: relative;
    border-radius:100% !important;
}

.input-with-icon i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
     color: #153c65;
    font-size: 16px;
}

.input-with-icon input {
    padding-left: 60px !important; /* Espace pour l'icône */
}
.input-with-icon #togglePassword {
     position: absolute;
     left: 90%;   
     top: 50%; 
     transform: translateY(-50%);
      cursor: pointer;
    color: #153c65;
      font-size: 16px; 
    }



.image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    flex-grow: 1;
    justify-content: center;
}

.image-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.image-col {
    flex: 1;
    max-width: 250px;
}

.image-col-4 {
    flex: 1;
    max-width: 350px;
}

.image-col-3 {
    flex: 1;
    max-width: 150px;
    margin-top: 40px;
}

.image-col-2 {
    flex: 1;
    max-width: 500px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}