#pass_rec_wrap {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#pass_rec_container {
    width: 40%;
    display: flex;
    flex-direction: column;
}

#pass_rec_container input {
    margin-top: 2rem;
    border: 1px solid #808080;
    width: 80%;
    height: 2.25rem;
}

#pass_rec_container input[type=checkbox] {
    /*-moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;*/
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0rem;
}

#pass_rec_container #email::after {
    content: 'hello';
    background: red;
    width: 100px;
    height: 100px;
}

#pass_rec_container .invalid {
    border: 2px solid red;
}

#pass_rec_container input[type=submit] {
    margin-top: 2rem;
    width: 30%;
    height: 2.25rem;
    background-color: var(--main-color);
    border: none;
    color: #fff;
    cursor: pointer;
}

#pass_rec_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 920px) {
    #pass_rec_container {
        width: 60%;
    }
}


@media only screen and (max-width: 620px) {

    #pass_rec_container input,
    #pass_rec_wrap {
        width: 100%;
    }

    #pass_rec_container,
    #pass_rec_wrap p {
        width: 90%;
    }
}