 @import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  Arial, sans-serif;
    color: white;
    border: none;
}

body{
background-image: url(background-2462431_1920\ OPACITY.png);
background-color: #ffffff;
justify-content: center;
align-items: center;
text-align: center;


}
#login-container img{
    max-width: 100%;
    height: auto;
}

h1{
    font-size: 3rem;
    color: #8d8c84;
}

h2{
    font-size: .8rem;
}

textarea:focus, input:focus{
    outline: none;
}

a{
    font-size: .8rem;
}

a:hover{
    color: #08558b;
}


#login-container{
    background-color: #82a0aca4;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    margin-top: 10vh;
    border-radius: 10px;
    text-align: center;
 
}


form{
    margin-top: 30px;
    margin-bottom: 40px;
}


label, input{
    display: block;
    width: 100%;
    text-align: center;
}

label{
    font-weight: bold;
    font-size: .8rem;
}

input{
    border:1px solid #666565;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    background-color: #ccc;
}


input:focus{
    border: 2px solid #ffffff;
}

input[type="submit"]{
    text-align: center;
    text-transform: none;
    font-weight: lighter;
    border: none;
    border-radius: 0px;
    height: 40px;
    margin-top: 30px;
    margin-left: 0%;
    color: #ffffff;
    background-color: #536f7a;
    cursor: pointer;
    width: 50px auto;

}

input[type="submit"]:hover{
    background-color: #1b223c;
    transition: .5s;
}

@media (max: 800px){
    body{
        justify-content: center;
align-items: center;
text-align: center;
    }
}
