
.jwsAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: var(--main-color-1);
    color: #000000;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.jwsAction:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.jwsAction:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* Disabled link */
.jwsAction.disabled {
    opacity: 0.5;
    pointer-events: none;
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
}



.loginCreateAccountLink,
.grammarViewCreateAccountLink,
.grammarViewUpgradeMembershipLink
{
    margin-top: 1.6rem;
    font-size: 1.4rem;
    color: #555;
}

.loginCreateAccountLink a,
.grammarViewCreateAccountLink a,
.grammarViewUpgradeMembershipLink a
{
    color: var(--main-color-3);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: 0.15s ease;
}

.loginCreateAccountLink a:hover,
.grammarViewCreateAccountLink a:hover,
.grammarViewUpgradeMembershipLink a:hover
{
    color: #2c3e50;
    border-color: var(--main-color-3);
}
