/* connexion.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    padding: 20px;
}

.logo {
    width: 200px;
    margin-left: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
} 

.image img {
    width: 450px;
    height: auto;
    border-radius: 20px;
    margin-right: 120px;
}

.formulaire {
    margin-left: 50px;
    
}

.formulaire h1 {
    font-size: 40px;
    color: #4B88B7;
    margin-bottom: 30px;
    font-weight: bold;
    font-style: italic;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    width: 300px;
    padding: 8px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    font-size: 14px;
}

.options {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.options input {
    margin-right: 5px;
}

.options label {
    font-size: 14px;
}

.liens {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-bottom: 20px;
}

.liens a {
    font-size: 10px;
    color: #888;
    text-decoration: none;
}

button {
    width: 120px;
    padding: 10px;
    background-color: #4B88B7;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-start;
}

button:hover {
    background-color: #3a6f98;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px 20px 80px;
    font-size: 12px;
    flex-wrap: wrap;
}

footer div {
    margin-bottom: 20px;
}

footer h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    color: black;
}

footer img {
    width: 40px;
    margin-left: 10px;
}
