.password_reset_content{
    background: var(--cream_color);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.password_reset_page_div{
    width: 600px;
    height: 440px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
    border-radius: 15px;
    padding: 30px 40px;
}
.counter{
}
.counter_number{
    text-align: center;
    display: block;
    font-size: 3rem;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.counter_text_info{
    display: block;
    text-align: center;
}
.form_reset_div{
    position: relative;
    width: 400px;
    margin: auto;
}
.reset_pw_submit button{
    width: 100%;
    border: none;
    background: var(--primary_color);
    padding: 7px 15px;
    font-size: 1.1rem;
    border-radius: 5px;
    margin: 25px 0 0 0;
}
.reset_pw_submit button:hover{
    cursor: pointer;
    background: var(--primary_hover_color);
}