.forgot-password-text {
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    padding-bottom: 50px;
    max-width: 700px;
}xW

.reset-password-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 250px;
    border: none;
    padding: 12px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.reset-password-btn:hover {
    background-color: #333333;
}

@media screen and (max-width: 767px) {
    .forgot-password-text {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 20px;
    }

    .reset-password-btn {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .forgot-password-text {
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 30px;
    }
}
