html, body {
    height: 100%;
    margin: 0;
    }
    body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    }
    .main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    }
    .login-form {
    max-width: 500px;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border: 2px solid #DAB30A;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .login-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #DAB30A;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    fieldset {
    border: none;
    padding: 0;
    }
    legend {
    font-size: 1.5rem;
    font-weight: bold;
    color: darkslategray;
    border-bottom: 2px solid #DAB30A;
    padding-bottom: 5px;
    margin-bottom: 15px;
    }
    label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: darkslategray;
    }
    /* Reset tous styles par défaut du navigateur pour les inputs */
    input {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"] {
    width: 100% !important;
    height: 40px !important;
    padding: 10px !important;
    margin: 5px 0 15px !important;
    border: 1px solid #DAB30A !important;
    border-radius: 5px !important;
    background-color: #f9f9f9 !important;
    color: black !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    }
    input[type="submit"] {
    background-color: #DAB30A;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
    height: auto;
    }
    input[type="submit"] {
    background-color: black;
    color: #DAB30A;
    }
    .error-message {
    color: red;
    margin-bottom: 15px;
    text-align: center;
    }
    .create-account {
    text-align: center;
    margin-top: 20px;
    }
    .create-account a {
    color: #DAB30A;
    text-decoration: none;
    font-weight: bold;
    }
    .create-account a {
    text-decoration: underline;
    }
    /* Style pour la case à cocher */
    .remember-me {
    margin: 15px 0;
    display: flex;
    align-items: center;
    }
    .remember-me input[type="checkbox"] {
    margin-right: 5px;
    }
    /* Responsive */
    @media (max-width: 768px) {
    .login-form {
    padding: 15px;
    margin: 20px auto;
    }
    }