#form-auth{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #001524,#292424);
    background-size: cover;
    height: 100vh;
}
#form-auth form{
    width: 370px;
    padding: 30px;
    background: white;
    border-radius: 5px;
}
#form-auth form h1{
    text-align: center;
}
#form-auth label{
    display: block;
    font-weight: bold;
    padding: 5px 0px;
}
#form-auth input{
    width: 100%;
    padding: 12px;
    border: 2px solid #c5c5c5;
    border-radius: 3px;
    transition: 0.1s;
}
#form-auth input:focus{
    outline: 3px solid #001524;
    transition: 0.1s;
    border-color: #001524;
}
#form-auth button{
    width: 100%;
    display: block;
    padding: 12px 7px;
    margin: 20px 0px;
    font-weight: bold;
    background: linear-gradient(90deg, #001524,#001524);
    background-size: cover;
    color: white;
    border-radius: 3px;
    border: none;
    font-family: 'Cabin', sans-serif;
    font-size: 14px;
}
#form-auth button:hover{
    opacity: 0.9;
}
.more-form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.more-form a{
    color: #001524;
    font-weight: bold;
}
.more-form a:hover{
    color: #ec419d;
}
a.forgotpassword{
    margin-top: 10px;
}
#error-confirm{
    font-weight: bold;
    color: red;
}