body{
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url("font.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.bande-verte{
    position: relative;
    top: 18%;
    left: 24.2%;
    background-color: #C4D6D2;
    color: #000;
    width: 76%;
    height: 8%;
    overflow: hidden;
    padding:1px;
    font-weight: bold;
    display:flex;
    justify-content: center;
    text-align: center;
    border-radius: 0 5px 5px 5px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1% 100%);
}

.bande-verte h3{
    position: absolute;
    width: 100%;
    animation: defilement 15s linear infinite;
}

.form-container{
    position: relative;
    top: 75.5%;
    left: 2%;
}

.login-form{
    margin-left: 2%;
    width: 15%;
    display: flex;
    flex-direction: column;
}

.login-form input[type="text"]{
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid white;
    border-radius: 5px;
}

.login-button{
    padding: 10px;
    background-color: #336E98;
    margin-left: 25%;
    width: 100px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.login-button:hover{
     transition: .5s ease-in-out;
     background-color: #BDD7EC;
 }

@keyframes defilement {
    from {transform: translateX(100%);}
    to {transform: translateX(-100%); }
}
