body {
    margin: 0px;
}

.password-bg {
    background-color: #f1e6d4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.password-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    font-family: 'Tinos', sans-serif;
    -webkit-box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    direction: rtl;
}

.password-msg {
    width: 500px;
    text-align: center;
}

.password-error-msg {
    color: red;
}

.password-submit {
    background-color: #c9a227;
    color: white;
    border-radius: 50px;
    border: 0px;
    padding: 6px 40px;
    margin: 10px 0px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.password-submit:hover {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#id_email, #id_new_password1, #id_new_password2 {
    background-color: #f8dda5;
    border: 0px;
    padding: 5px;
    border-radius: 5px;
}

@media only screen and (max-width: 700px) {
    .password-msg {
        width: 250px;
    }
    .password-reset {
        width: 80vw;
    }
    #id_new_password1, #id_new_password2 {
        width: 97%;
    }
}

@media only screen and (max-height: 568px) {
    .margin-space {
        margin: 0;
    }
}