@import url('https://fonts.googleapis.com/css?family=Roboto');


*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Appliquer la police personnalisée au corps du document */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Changer la taille de la police pour le titre */
h1 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 50px;
    text-align: center;
}

/* Centrer le formulaire */
form {
    width: 400px;
    margin: auto;
}

/* Styling pour le champ de mot de passe */
input[type="password"] {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
}

/* Styling pour le bouton */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.logo-container img {
    width: 200px;
    height: 200px;
}

.error-message {
    text-align: center;
    background-color: #ffe3e3;
    color: #d8000c;
    border: 1px solid #d8000c;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
  }

