.additional-txt {
    font-size: 14px;
    color: rgba(var(--font-color-rgb), 0.85);
    border-top: 1px solid rgba(var(--font-color-rgb), 0.2);
    padding-top: 20px;
    margin: 24px auto 0;
    text-align: center;
    width: 95%;

    span {
        cursor: pointer;
        user-select: none;
        color: rgba(var(--clickable-blue-tag-rgb), 0.9);

        &:hover {
            color: rgba(var(--clickable-blue-tag-rgb), 0.7);
        }
    }
}

.interaction-buttons {
    margin-top: 24px;
    justify-content: center;
}

#submit-btn {
    border-radius: 25px;
    padding: 8px 22px;
}

#create-account {
    font-size: 15px;
    font-weight: 550;
    margin-left: 6px;
}

.auth-content {
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none;
    text-wrap: nowrap;
    cursor: pointer;
    margin: 8px auto;
    display: flex;
    align-items: center;
    max-width: 406px;

    .connect-content {
        display: flex;
        align-items: center;
        width: 205px;
        margin: auto;
    }

    &:first-child {
        margin-top: 0;
    }

    &:last-child {
        margin-bottom: 0;
    }

    &.google {
        background-color: var(--brand-color-google);
        color: rgb(240, 240, 240);
    }

    &.microsoft {
        background-color: var(--brand-color-microsoft);
        color: rgb(240, 240, 240);
    }

    &.github {
        background-color: var(--brand-color-github);
        color: rgb(240, 240, 240);
    }

    &.discord {
        background-color: var(--brand-color-discord);
        color: rgb(240, 240, 240);
    }

    i {
        width: 40px;
        font-size: 20px;
        margin-right: 16px;
        text-align: center;
    }

    span {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
}

.verify-action-form {
    input {
        letter-spacing: unset !important;
        font-weight: unset !important;;
    }
}

#dynamic-error-info {
    margin-top: 10px !important;
    margin-bottom: 4px !important;
}