body {
    font-family: "Nunito", serif;
    font-weight: 600;
    background-color: #eff2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

p,
h1,
h4,
h5 {
    margin: 0;
}

.hr {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
}


.login-container {
    background-color: #fff;
    border-radius: 10px;
    border: none;
    position: relative;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
    border-top: 2px solid #6777ef;
    width: 450px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-container h4{
    font-size: 26px;
}

form {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 10px;
}


.form-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

label{
    font-family: "Nunito", serif;
    font-weight: 600;
}

.button{
    background-color: #6777ef;
    width: 100%;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 38px;
    font-family: "Nunito", serif;
    font-weight: 600;
    cursor: pointer;
}

.error{
    font-size: 16px;
    color: red;
}

input{
    width: auto;
    height: 30px;
    font-family: "Nunito", serif;
    font-weight: 600;
    padding: 0px 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    outline: none;
}