body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
}

#container {
    display: flex;
    position: static;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 150px;
    margin-bottom: 100px;
}

h1 {
    text-align: center;
    margin-bottom: 60px;
}

form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
}

form input {
    width: calc(100% - 10px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

form input[type="submit"],
form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background-color: #0fc926;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover,
form button:hover {
    background-color: #0dad20;
}


form a {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

.error {
    color: red;
    background-color: #ffe5e5;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ff4d4d;
    text-align: center;
    font-weight: bold;
}
.cadre {
    margin-top: 15px;
    text-align: center;
}

