body {
    background-color: #2B2738;
}

.pass-reset-form {
    display: flexbox;
    color: #ffff;
    background-color: #363242;
    margin: 0 auto;
    margin-top: 60px;
    width: 70vw;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 24px 24px;
    flex-direction: column;
    text-align: center;
}

.pass-form {
    font-size: 18px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.pass-reset-form h2{
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.4px;
    font-size: 24px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pass-reset-form .form-header{
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 0px;
    justify-content: start;
    display: flex;

}

/* Поля формы */
.pass-form input {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.07);
    border-width: 1px;
    border-color: antiquewhite;
    color: #ffffff;
    border-radius: 12px;
    font-size: 18px;
    width: 100%;
    height: 55px;
    transition: background-color 0.8s ease
}

.pass-form input:focus{
    background-color: #363242;
}

.pass-form button{
    padding: 0px 15px 0px 15px;
    cursor: pointer;
    color: #ffffff;
    background-color: #7260F5;
    height: 55px;
    border: none;
    border-radius: 12px;
    margin: 0 auto;
    margin-top: 32px;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: background-color 0.8s ease, border-color 0.3s ease;
}

.pass-form button:hover {
    color: #7260F5;
    background-color: #ffffff;
}