.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    background-color: #f5f5f5;
}
@media only screen and (max-width: 768px){
    .grid-container{
        grid-template-columns: 1fr;
    }
}
.reset-the-password-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.reset-the-password-button button{
    background: #f48c06;
    border-radius: 20px;
    /*width: 150px;*/
    text-decoration: none;
    color: white;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
}
.reset-the-password-box{
    text-align: center;
    padding-top: 300px;

    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 1.2em;
    /*line-height: 19px;*/

    color: rgba(0, 0, 0, 0.5);

    opacity: 0.7;

}
#reset-form{
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.11);
    box-sizing: border-box;
    box-shadow: 0px 10px 40px rgba(38, 45, 118, 0.05);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1028px){
    .grid-container{
        grid-template-columns: 1fr;
        background-color: #fff;
    }
    .reset-the-password-box{
        padding-top: 100px;
    }
}

@media only screen and (min-width: 728px) and (max-width: 1028px){
    .reset-girl img{
        width: 100%;

    }
}