#html-body.customer-account-forgotpassword button.action.primary,
#html-body.customer-account-create  button.action.primary {
    background: var(--bluegradient);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 10px;
    overflow-x: hidden;
    z-index: 1;
    position: relative;
}

#html-body.customer-account-forgotpassword button.action.primary::before,
#html-body.customer-account-create  button.action.primary::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bluegradient-inverted);
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

#html-body.customer-account-forgotpassword button.action.primary:hover::before,
#html-body.customer-account-create  button.action.primary:hover::before {
    opacity: 1;
}

#html-body.customer-account-forgotpassword .control.captcha .field.captcha.no-label {
    text-align: center;
}

#html-body.customer-account-forgotpassword .control.captcha .field.captcha.no-label .control.captcha-image img {
    margin: 0 auto 10px;
}

@media(min-width:769px) {
    #html-body.customer-account-forgotpassword .control.captcha .field.captcha.no-label .control.captcha-image img {
        margin: 0 10px 10px 0;
    }
}