input{
    width: 320px;
}

button{
    height: 50px;
    width: 345px;
    padding: 5px;
    font-size: 23px;
    font-weight: bold;
    color:  white;
    border-style: none;
    border-radius: 4px;
}

a{
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a:hover{
    text-decoration: underline;
}


.title{
    font-size: 70px;
    margin: 0;
}

.tagline{
    margin: 0;
    font-size: 25px;
}

.login-container{
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.login-form{
    width: 400px;
}

.login-form form{
    display: flex;
    flex-direction: column;
    flex: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0px 4px rgba(70, 70, 70, 0.322);
}

.login-form #error_box{
    color: rgb(255, 70, 70);
}

.login-inputs{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-password{
    width: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: flex-end;
}

.show-password label{
    color: #333;

}

.show-password input{
    margin: 0px;
    padding: 0px;
    width: 20px;
}

.actions{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#forgot-pwd{
    font-weight: normal;
}

img{
    width: 100%;
    height: 100%;
    margin: 0px;
}
