body{
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden !important;
    background-image: url(login.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 100vw;
    overflow: hidden;
}

.login-container {
    padding: 4rem;
    margin-top: 50px;
    background-color: white;
    width: 500px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.15);
    box-sizing: border-box;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.inputs_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}


.message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 16px;
    text-align: center;
    
}

.message.error {
    color: #b30012;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

@media screen and (max-width: 48em) {
    .inputs-container  {
        width: 100% !important;
    }
 }