/* Style général */
body {
    margin: 0;
    padding: 0;
    font-family: Segoe UI, sans-serif;
    background-color: #0a183d;
    color: white;
}

/* Conteneur principal */
.container {
    display: flex;
    height: 100vh;
}

/* Section du formulaire */
.login-box {
    width: 40%;
    background-color: #0a183d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box h1 {
    font-size: 22px;
    margin-bottom: -15px;
}

.login-box p {
    font-size: 11px;
    margin-bottom: 20px;
}


.login-box form {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.login-box input {
    margin: 10px 0;
    padding: 10px;
    width: 95%;
    border: none;
    border-radius: 2px;
}

.login-box button {
    background-color: #555;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 10px;
}

.login-box button:hover {
    background-color: #777;
}

.login-box a {
    color: white;
    margin-top: 10px;
    font-size: 12px;
    text-decoration: none;
}

/* Section de l'image */
.image-box {
    width: 60%;
    background: url('/assets/img/AdobeStock_499330631_Preview.jpeg') no-repeat center center/cover;
}
