* {
    margin: 0;
    padding: 0;
    font-family: dinMedium, sans-serif;
}

body {
    background: #447603;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.connexion_form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

form div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

form {
    padding: 1vh 3vw 5vh 3vw;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    background: #819848;
    backdrop-filter: blur(10px);
    color: white;
    margin-bottom: 15vh;
}

form h1 {
    font-family: dinBold, sans-serif;
    text-align: center;
    padding: 2vw;
}

div .error p {
    color: red;
    font-family: dinBold, sans-serif;
}

form a {
    color: rgba(255, 255, 255, 0.5);
}

form input {
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 5vh;
    margin: 1vh;
}

form input:active {
    border: transparent;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

form button {
    width: 100%;
    height: 5vh;
    background: white;
    border: none;
    border-radius: 40px;
    margin: 1vw 0px;
}