body {
    background-color: #f5f5f5;    
}

.navbar-cartell {
    background-color: #54585A !important;
    margin-bottom: 2rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.main-text {
    font-size: 3rem;
    font-weight: 100;
}

.body-text {
    font-size: 1.25rem;
    /* margin-bottom: 1.5rem; */
    text-align: center;
}

/* form on password_reset.html */
.reset-form {
    padding-left: 12%;
    padding-right: 12%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 2%;
    margin-bottom: 10%;
    background-color: white; 
    border-radius: 15px;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.form-text {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 100; 
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

label[for='id_email'], label[for='id_new_password1'], label[for='id_new_password2'] {
    margin-right: 10px;
    font-size: 1.5rem;
    font-weight: 100;
    display: none; 
}

#id_email, #id_new_password1, #id_new_password2 {
    width: 100%; 
    padding: 10px;
    padding-left: 20px;
    border-radius: 25px;
    border: #54585A solid 2px; 
}

#id_new_password2 {
    margin-bottom: 1rem;
}

#id_email:focus, #id_new_password1:focus, #id_new_password2:focus {
    border: #6787B7 solid 2px !important;
    outline: none;
}

.helptext {
    font-weight: 100;
    margin-bottom: 1rem;
}

input[type='submit'] {    
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 25px;
    background-color: #FFB500;
    border: #54585A solid 2px; 
    outline: none;
}
/* end form on password_reset.html */

.contact-us {
    text-decoration: none;
}