.ghm-hidden {
    display: none;
}

.ghm-login-form>*+* {
    margin-top: 14px;
}

.ghm-login-form .ghm-submit-btn {
    background-color: #2945B8;
    padding: 15px 30px;
    border-radius: 99999px;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    font-size: 14px;
    border-color: #2945B8;
}

.ghm-logged-in-content h2 {
    font-size: 26px;
    line-height: 1;
}

.ghm-spinner {
    display: none;
    height: 24px;
    width: 24px;
    border: 2px solid #d7d7d7;
    border-left-color: #2945b8;
    border-radius: 100%;
    animation: donut-spin 1.2s linear infinite;
}

@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}