
.btn-primary {
    background-color: var(--actions-primary-base);
    border: 1px solid var(--actions-primary-base);
    border-radius: var(--button-border-radius);
}

    .btn-primary:hover {
        background-color: var(--actions-primary-hover-background);
        color: var(--actions-primary-hover-color);
        border: 1px solid var(--actions-primary-base);
        transition: 0.5s;
    }

    .btn-primary:not(:disabled):not(.disabled):active, 
    .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: var(--actions-primary-hover-background);
        border-color: var(--actions-primary-hover-color);
    }

.subtitle{
    font-family: var(--primary-font);
}

.login-return {
    padding: 10px 20px;
    border-radius: 100px;
    background-color: var(--actions-primary-base);
}

    .login-return a {
        color: var(--actions-primary-text);
    }

.submit-button button {
    padding: 10px 18px;
    font-size: var(--fs-s);
    font-weight: var(--fw-bold);
    width: fit-content;
}

    .submit-button button:disabled {
        background-color: var(--actions-disabled-base);
        border-color: transparent;
        color: var(--actions-disabled-text);
    }

.auth-page {
    margin-left: 100px;
    width: fit-content;
}

    .auth-page .auth-banner {
        border: 1px solid #E8E8E8;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 12px 20px 12px 16px;
        gap: 15px;
        width: fit-content;
    }

    .auth-page .send-again {
        margin-top: 20px
    }

        .auth-page .send-again a {
            color: white;
        }

.auth-banner.resent {
    background-color: #E6F6F1;
}

.auth-page .expired-error {
    background: #FAE4E6;
}

.auth-page .auth-banner svg {
    width: 34px;
    height: 34px;
    border-radius: 100px;
}

.auth-page .email .invalid-message {
    visibility: hidden;
}

    .auth-page .email .invalid-message.field-validation-error {
        visibility: visible;
    }

.auth-page .expired-error svg {
    background-color: #F1C9C9;
    border: 2px solid #F1C9C9;
}

.auth-page.error-page .btn-primary {
    border-radius: 100px;
}

.login-page .title {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-black);
    margin-top: 40px;
}

.login-page .subtitle {
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-black);
}

.login-page .email .label {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary-b)
}

    .login-page .email .label:before {
        color: #C62828;
        content: ' *';
        display: inline;
        margin-right: 3px;
    }

.login-page .email .big-label {
    padding: 5px 0px;
    font-weight: 300;
    font-size: 12px;
}

.login-page .email input {
    font-family: var(--secondary-font);
    border-radius: 5px;
    outline: 1px solid var(--secondary-c);
    width: 325px;
}

.login-page .notifcation-message {
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
}

    .login-page .notifcation-message li:before {
        background-image: url(static/img/svg/icons/icon-info.svg);
        height: 10px;
    }

    .login-page .notifcation-message:after {
        background-image: url(../static/img/svg/icons/icon-info.svg);
    }

.login-page .submit-button {
    padding-left: 0;
    align-items: center;
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
    gap: 0px 200px;
}

    .login-page .submit-button a {
        text-decoration: underline 1px solid var(--actions-regular-link);
        color: var(--actions-regular-link);
    }

    .login-page .submit-button p {
        font-weight: 500;
        display: inline-block;
        padding-left: 30px;
        margin-left: auto;
        font-size: var(--fs-s);
    }



.learn-more span {
    font-size: var(--fs-s);
    font-weight: var(--fw-light);
}

.learn-more a s {
    font-size: var(--fs-xs);
    font-weight: 400;
}

.login-page .helper-text {
    color: var(--secondary-b);
    font-weight: 500;
}

@media (max-width: 767px) {
    .learn-more {
        font-family: var(--secondary-font);
        margin-top: 20px;
        border-top: 1px solid var(--background-divider);
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 20px;
    }

        .learn-more a {
            padding: 5px 10px;
            font-size: 12px;
        }
}

@media (max-width: 767px) {
    .auth-page {
        margin-left: 30px;
        margin-right: 20px;
    }

    .login-page {
        margin-left: 25px;
        margin-right: 30px;
    }

        .login-page .submit-button {
            padding-top: 0px;
            flex-flow: wrap;
        }

            .login-page .submit-button p {
                padding-left: 0px;
                padding-top: 45px;
            }

            .login-page .submit-button button {
                margin-right: 22%;
            }

        .login-page .helper-text {
            margin-top: 35px;
        }

        .login-page .notifcation-message {
            margin-bottom: 40px;
        }
}

/* 2FA Page */
.twofa-page .title {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

    .twofa-page .title .confirm-identity {
        padding-bottom: 40px;
    }

    .twofa-page .title a {
        margin-right: 100px;
        place-self: baseline;
    }

.twofa-page .subtitle {
    display: flex;
    font-size: 18px;
}

    .twofa-page .subtitle b {
        color: var(--secondary-b);
    }

.twofa-page .code {
    padding-top: 40px;
}

    .twofa-page .code .label {
        font-weight: 600;
        font-size: 14px;
        color: var(--secondary-b)
    }

        .twofa-page .code .label:before {
            color: #C62828;
            content: ' *';
            display: inline;
            margin-right: 3px;
        }

.auth-page .code-number-input {
    background: white;
    border: 1px solid #BFBFBF;
    border-radius: 5px;
    display: flex;
    width: fit-content;
    padding: 10px;
}

.code-number-input .select {
    font-size: 16px;
    line-height: 1.4;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSI4LjkiIHZpZXdCb3g9IjAgMCAxNiA4LjkiPg0KICAgIDxwYXRoIGZpbGw9IiM4MDgwODAiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMS41LDAuM2MtMC4zLTAuMy0wLjktMC4zLTEuMywwcy0wLjMsMC45LDAsMS4zbDcuMSw3LjFDNy43LDksOC4zLDksOC42LDguNmw3LjEtNy4xYzAuMy0wLjMsMC4zLTAuOSwwLTEuMw0KICAgICAgICBzLTAuOS0wLjMtMS4zLDBMOCw2LjhMMS41LDAuM3oiLz4NCjwvc3ZnPg0K") no-repeat scroll right 12px center/16px 9px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSI4LjkiIHZpZXdCb3g9IjAgMCAxNiA4LjkiPg0KICAgIDxwYXRoIGZpbGw9IiM4MDgwODAiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMS41LDAuM2MtMC4zLTAuMy0wLjktMC4zLTEuMywwcy0wLjMsMC45LDAsMS4zbDcuMSw3LjFDNy43LDksOC4zLDksOC42LDguNmw3LjEtNy4xYzAuMy0wLjMsMC4zLTAuOSwwLTEuMw0KICAgICAgICBzLTAuOS0wLjMtMS4zLDBMOCw2LjhMMS41LDAuM3oiLz4NCjwvc3ZnPg0K") no-repeat scroll right 0.75rem center/16px 9px;
    cursor: pointer;
    vertical-align: middle;
    width: 110px;
}

    .code-number-input .select::-webkit-scrollbar {
        width: 5px;
        background-color: #F3F9F8;
    }

    .code-number-input .select option:focus,
    .code-number-input .select option:active,
    .code-number-input .select option:hover {
        background-color: #F5F5F5;
    }

.twofa-page .code #code-input {
    margin-top: 8px;
    border-radius: 5px;
    outline: 1px solid var(--secondary-c);
    border-radius: 5px;
    width: 230px;
}

.twofa-page .phoneNumber input {
    border-radius: 5px;
    width: 130px;
    padding-left: 5px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.twofa-page .login-error-message {
    border-radius: 5px;
    color: var(--danger);
    width: fit-content;
    padding: 10px;
    font-size: 14px;
}

.twofa-page .submit-button .btn {
    margin-top: 30px;
    white-space: nowrap;
    font-size: 14px;
}

.twofa-page .helper-section {
    border-top: 1px solid var(--background-divider);
    margin-top: 40px;
    padding-top: 40px;
    display: inline-flex;
    gap: 40px;
    color: var(--secondary-b);
    font-size: var(--fs-s);
}

.twofa-page .expiry svg {
    padding-right: 10px;
}

.twofa-page .helper-text {
    font-weight: 600;
}

    .twofa-page .helper-text a {
        font-weight: 400;
        margin-left: 10px;
        color: var(--actions-regular-link);
        border-bottom: 1px solid var(--actions-regular-link);
    }

@media (max-width: 767px) {
    .twofa-page .title .confirm-identity {
        padding-bottom: 20px;
    }

    .twofa-page .subtitle b {
        margin-right: 20px;
    }

    .twofa-page .code {
        padding-top: 30px;
    }

    .twofa-page .submit-button .btn {
        margin-top: 50px;
    }

    .twofa-page .helper-section {
        border-top: none;
        padding-top: 10px;
    }
}

@media (max-height: 770px) {
    .twofa-page .submit-button .btn {
        margin-top: 0px;
    }

    .twofa-page .code {
        padding: 30px 0px 50px 0px;
    }
}
