/* SiteCheckr — Register button */

form[action$="/register"] .btn-auth-submit {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #2563eb !important;
    border: 1px solid #2563eb !important;
    color: #ffffff !important;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;

    border-radius: 12px;

    opacity: 1 !important;
    box-shadow: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

form[action$="/register"] .btn-auth-submit:hover,
form[action$="/register"] .btn-auth-submit:focus {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: #ffffff !important;
}

form[action$="/register"] .btn-auth-submit:active {
    transform: translateY(1px);
}

form[action$="/register"] .btn-auth-submit svg {
    color: currentColor !important;
    stroke: currentColor !important;
}