.reset {
    max-width: 1320px;
    margin: calc(var(--header-height) + 20px) auto 35px auto;
    padding: 35px 0;
    position: relative;
}

.reset h1 {
    font-size: clamp(25px, 5vw, 34px);
    font-weight: 900;
}

.reset form {
    display: flex;
    flex-direction: column;
}

.reset form input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--input-border-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.reset form .button-send {
    max-width: 600px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color-bg-btn-login);
    color: var(--color-font-btn-login);
    margin: 7px 0;
}

.reset form .button-send:hover {
    background-color: var(--color-bg-btn-login-hover);
}

@media screen and (max-width: 768px) {
    .reset {
        margin: var(--header-height) 20px 0 20px;
    }
}