@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@font-face {
    font-family: "Horizon";
    src: url('../fonts/horizon.otf') format('opentype');
}
*{
    font-family: "Rubik", serif;
    user-select: none;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(../images/background.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: rgba(0, 94, 138, 0.83);
    padding: 30px; /* Augmentation de la marge intérieure */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    color: #fff;
}
.login-container h1 {
    font-family: "Horizon", serif;
    margin: 0 0 20px;
    font-size: 25px;
}
.login-container input {
    width: calc(100% - 20px); /* Ajustement de la largeur pour tenir compte du padding */
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
.login-container button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #afe6ffd2;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}
.login-container button:hover {
    background-color: #f9f9f9;
}
.error {
    color:rgb(133, 0, 0);
    margin-bottom: 10px;
}