﻿/* =========================================================
   ROOT
========================================================= */

:root {
    --gold: #d79b4a;
    --gold-light: #f0bd72;
    --dark: #111111;
    --dark-soft: #181818;
    --input: #eeeeee;
    --text: #222222;
    --muted: #777777;
    --danger: #d92525;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #191919;
}


/* =========================================================
   MAIN BACKGROUND
========================================================= */

.registration-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url(/assets/images/login-illustration.png);
    background-repeat: no-repeat;
    background-size: 100% 960px;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


    /* =========================================================
   DARK OVERLAY
========================================================= */



/* =========================================================
   MAIN CARD
========================================================= */

.registration-card {
    display: flex;
    z-index: 1;
    overflow: hidden;
    border-radius: 25px;
    background: transparent;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .30);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* =========================================================
   LEFT SIDE
========================================================= */

.registration-left {
    position: relative;
    width: 430px;
    height: 680px;
    flex: 0 0 430px;
    order: 1;
    overflow: hidden;
    background-image: url(/assets/images/left_bg.png);
    background-repeat: no-repeat;
    background-size: 430px 680px;
    background-position: center center;
}

 

/* =========================================================
   LANGUAGE
========================================================= */

.language-box {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: 34px;
    height: 30px;
    min-width: 105px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(215,155,74,.9);
    border-radius: 7px;
    background: rgba(40,40,40,.5);
    color: #ddd;
    font-size: 12px;
}

    .language-box i {
        font-size: 14px;
    }


/* =========================================================
   LEFT CONTENT
========================================================= */

.left-content {
    position: absolute;
    z-index: 3;
    top: 78px;
    left: 35px;
    right: 25px;
}

    .left-content h1 {
        font-size: 35px;
        line-height: 1;
        font-weight: 600;
        color: #fff;
        margin-bottom: 18px;
    }

    .left-content p {
        max-width: 310px;
        font-size: 12px;
        line-height: 1.7;
        color: #aaa;
    }


/* =========================================================
   LEFT BOTTOM
========================================================= */

.left-bottom {
    position: absolute;
    z-index: 3;
    left: 35px;
    right: 35px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   LOGO
========================================================= */

.left-logo img {
    width: 82px;
    max-height: 50px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   ACCOUNT TEXT
========================================================= */

.account-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .account-text span {
        font-size: 13px;
        color: #bdbdbd;
    }

    .account-text a {
        text-decoration: none;
        color: var(--gold-light);
        font-size: 14px;
        font-weight: 600;
    }

        .account-text a i {
            margin-left: 4px;
        }


/* =========================================================
   RIGHT SIDE
========================================================= */

.registration-right {
    position: relative;
    width: 570px;
    height: 680px;
    flex: 0 0 570px;
    order: 2;
    padding: 70px 62px 45px;
    background: linear-gradient(137deg, #eeeeee, #dad6d2 52%, #f3f6fd);
}


/* =========================================================
   HEADER
========================================================= */

.registration-header {
    margin-bottom: 30px;
}

    .registration-header h2 {
        font-size: 27px;
        font-weight: 400;
        color: #151515;
    }


/* =========================================================
   FORM SCROLL
========================================================= */

.registration-right form {
    height: calc(100% - 55px);
    overflow-y: auto;
    padding-right: 10px;
}


    /* scrollbar */

    .registration-right form::-webkit-scrollbar {
        width: 5px;
    }

    .registration-right form::-webkit-scrollbar-track {
        background: transparent;
    }

    .registration-right form::-webkit-scrollbar-thumb {
        background: #c9c9c9;
        border-radius: 20px;
    }


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 19px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        font-size: 12px;
        color: #4f4f4f;
    }

        .form-group label span {
            color: #df2727;
            margin-right: 2px;
        }


/* =========================================================
   INPUT
========================================================= */

.form-input {
    width: 100%;
    height: 35px;
    border-radius: 7px;
    background: #dedede;
    border: 1px solid transparent;
    transition: .2s ease;
    overflow: hidden;
}

    .form-input input {
        width: 100%;
        height: 100%;
        padding: 0 11px;
        border: 0;
        outline: 0;
        background: transparent;
        font-size: 12px;
        color: #333;
    }

        .form-input input::placeholder {
            color: #aaa;
        }


    /* =========================================================
   INPUT FOCUS
========================================================= */

    .form-input:focus-within {
        background: #e6e6e6;
        border-color: var(--gold);
        box-shadow: 0 0 0 1px rgba(215,155,74,.12);
    }


/* =========================================================
   PASSWORD
========================================================= */

.password-input {
    position: relative;
}

    .password-input input {
        padding-right: 42px;
    }

.password-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
}

    .password-toggle:hover {
        color: #333;
    }


/* =========================================================
   PHONE
========================================================= */

.phone-wrapper {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 7px;
    background: #dedede;
    overflow: hidden;
    border: 1px solid transparent;
}

    .phone-wrapper:focus-within {
        border-color: var(--gold);
    }

.country-code {
    height: 100%;
    min-width: 105px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-right: 1px solid #ccc;
    color: #555;
    font-size: 12px;
}

    .country-code i {
        margin-left: auto;
        color: #888;
    }

.india-flag {
    font-size: 17px;
    line-height: 1;
}

.phone-wrapper input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 10px;
    font-size: 12px;
}


/* =========================================================
   REFERRAL
========================================================= */

.referral-wrapper {
    display: flex;
    gap: 6px;
}

.referral-input {
    flex: 1;
}

.send-btn {
    width: 55px;
    border: 0;
    border-radius: 7px;
    background: #dedede;
    color: var(--gold);
    cursor: pointer;
    font-size: 11px;
    transition: .2s ease;
}

    .send-btn:hover {
        background: #d2d2d2;
    }


/* =========================================================
   CAPTCHA
========================================================= */

.captcha-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.captcha-input {
    flex: 1;
}

.captcha-image {
    width: 100px;
    height: 35px;
    border-radius: 7px;
    object-fit: cover;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
}

.captcha-refresh {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border: 0;
    border-radius: 7px;
    background: #dedede;
    color: #555;
    cursor: pointer;
    transition: .2s;
}

    .captcha-refresh:hover {
        background: #d2d2d2;
        color: #222;
    }


/* =========================================================
   TERMS
========================================================= */

.terms-container {
    margin-top: 2px;
    margin-bottom: 20px;
}

    .terms-container label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        cursor: pointer;
    }

    .terms-container input {
        display: none;
    }

.custom-checkbox {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .custom-checkbox i {
        display: none;
        font-size: 9px;
        color: #fff;
    }

.terms-container input:checked + .custom-checkbox {
    background: var(--gold);
    border-color: var(--gold);
}

    .terms-container input:checked + .custom-checkbox i {
        display: block;
    }

.terms-text {
    font-size: 10px;
    line-height: 1.5;
    color: #282727;
    
}

    .terms-text a {
        color: var(--gold);
        text-decoration: none;
    }


/* =========================================================
   REGISTER BUTTON
========================================================= */

.register-button {
    width: 100%;
    height: 37px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient( 90deg, #292929, #333333 );
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    transition: .25s ease;
}

    .register-button:hover {
        background: linear-gradient( 90deg, #202020, #292929 );
        transform: translateY(-1px);
    }

    .register-button:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }

    .register-button i {
        color: var(--gold-light);
    }


/* =========================================================
   LOGIN BOTTOM
========================================================= */

.login-bottom {
    padding: 18px 0 10px;
    text-align: center;
    font-size: 11px;
    color: #777;
}

    .login-bottom a {
        margin-left: 5px;
        color: #222;
        text-decoration: none;
        font-weight: 600;
    }

        .login-bottom a:hover {
            color: var(--gold);
        }


/* =========================================================
   ERROR
========================================================= */

.error-message {
    display: none;
    margin-top: 4px;
    color: var(--danger);
    font-size: 13px;
    line-height: 1.3;
}

.field-error {
    border-color: #df3333 !important;
    box-shadow: 0 0 0 1px rgba(223,51,51,.08);
}


/* =========================================================
   LOADER
========================================================= */

.registration-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
}

.loader-box {
    width: 220px;
    padding: 28px 20px;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.loader-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 15px;
    border: 4px solid #eee;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: registrationSpin .8s linear infinite;
}

.loader-text {
    font-size: 13px;
    color: #444;
}

@keyframes registrationSpin {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.reg-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.reg-popup-card {
    position: relative;
    width: 420px;
    max-width: 100%;
    padding: 40px 30px 30px;
    text-align: center;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient( 145deg, #fff, #f5f5f5 );
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
}

.reg-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(215,155,74,.25);
    filter: blur(35px);
}

.reg-success-icon {
    position: relative;
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient( 145deg, #d9a55d, #b87b31 );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(184,123,49,.3);
}

.reg-check {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #b57b34;
    font-size: 28px;
    font-weight: bold;
}

.reg-small-title {
    display: block;
    color: #b17a35;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.reg-popup-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.reg-popup-content p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.reg-divider {
    height: 1px;
    margin: 20px 0;
    background: #ddd;
}

.reg-login-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}

.reg-login-btn,
.reg-download-btn {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reg-login-btn {
    background: #292929;
    color: #fff;
}

.reg-download-btn {
    margin-top: 10px;
    background: #e9e9e9;
    color: #444;
}

.reg-countdown {
    margin-top: 18px;
    font-size: 11px;
    color: #888;
}

    .reg-countdown strong {
        color: #b17a35;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .registration-page {
        padding: 25px 15px;
    }

    .registration-card {
        width: 820px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    body {
        background: #eef0f7;
    }


    .registration-page {
        min-height: 100vh;
        padding: 0;
        display: block;
        background-image: url("/assets/images/login-illustration.png");
        background-size: auto 100%;
        background-position: center;
        overflow-y: auto;
    }

     

    .registration-card {
        width: 100%;
        min-height: 100vh;
        height: auto;
        display: block;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }


    /* =====================================================
       MOBILE LEFT
    ====================================================== */

    .registration-left {
        width: 100%;
        min-width: 0;
        height: 290px;
        border-radius: 0;
        background-size: cover;
        background-position: center top;
    }


    .language-box {
        top: 20px;
        right: 20px;
        min-width: 88px;
        height: 31px;
        font-size: 12px;
    }


    .left-content {
        top: 62px;
        left: 22px;
        right: 22px;
    }


        .left-content h1 {
            font-size: 28px;
            margin-bottom: 13px;
        }


        .left-content p {
            font-size: 12px;
            max-width: 300px;
        }


    .left-bottom {
        left: 22px;
        right: 22px;
        bottom: 30px;
        gap: 18px;
    }


    .left-logo img {
        width: 80px;
        max-height: 45px;
    }


    .account-text span {
        font-size: 11px;
    }


    .account-text a {
        font-size: 13px;
    }


    /* =====================================================
       MOBILE RIGHT
    ====================================================== */

    .registration-right {
        width: 100%;
        height: auto;
        min-height: calc(100vh - 230px);
        padding: 38px 22px 30px;
        border-radius: 28px 28px 0 0;
        margin-top: -30px;
        z-index: 5;
        overflow: visible;
        background: linear-gradient( 135deg, #ffffff, #f5f6fb );
        box-shadow: 0 -8px 30px rgba(0,0,0,.15);
    }


    .registration-header {
        text-align: center;
        margin-bottom: 28px;
    }


        .registration-header h2 {
            font-size: 25px;
            font-weight: 400;
        }


    .registration-right form {
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 0;
    }


    .form-group {
        margin-bottom: 18px;
    }


        .form-group label {
            font-size: 12px;
            margin-bottom: 7px;
        }


    .form-input,
    .phone-wrapper {
        height: 48px;
        border-radius: 11px;
    }


        .form-input input,
        .phone-wrapper input {
            font-size: 13px;
            padding-left: 14px;
        }


    .country-code {
        min-width: 95px;
        font-size: 12px;
        padding: 0 12px;
    }


    .password-toggle {
        width: 45px;
    }


    .referral-wrapper {
        gap: 7px;
    }


    .send-btn {
        width: 70px;
        border-radius: 11px;
        font-size: 12px;
    }


    .captcha-row {
        gap: 6px;
    }


    .captcha-image {
        width: 95px;
        height: 48px;
        border-radius: 10px;
    }


    .captcha-refresh {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }


    .terms-container {
        margin-top: 4px;
        margin-bottom: 20px;
    }


    .terms-text {
        font-size: 11px;
    }


    .register-button {
        height: 48px;
        border-radius: 10px;
        font-size: 13px;
    }


    .login-bottom {
        padding-top: 20px;
        padding-bottom: 5px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .registration-left {
        height: 265px;
    }


    .registration-right {
        margin-top: -25px;
        padding: 32px 18px 25px;
    }


    .left-content {
        left: 20px;
    }


        .left-content h1 {
            font-size: 26px;
        }


        .left-content p {
            font-size: 11px;
        }


    .left-bottom {
        left: 20px;
        right: 20px;
    }


    .left-logo img {
        width: 72px;
    }


    .account-text span {
        font-size: 10px;
    }


    .captcha-image {
        width: 82px;
    }


    .captcha-refresh {
        width: 43px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 350px) {

    .registration-right {
        padding-left: 15px;
        padding-right: 15px;
    }


    .captcha-image {
        width: 70px;
    }


    .captcha-refresh {
        width: 40px;
    }
}


.terms-text {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.terms-description {
    margin-bottom: 12px;
}
 

.terms-agreement label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.terms-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0f62cb;
}

.terms-agreement span {
    flex: 1;
}



/* =========================================
   DBG MARKETS FOOTER
========================================= */

.dbg-footer {
    width: 100%;
    background: #17191d;
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}


/* =========================================
   TOP AREA
========================================= */

.footer-top {
    padding: 42px 0 34px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 145px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}


/* =========================================
   LINKS
========================================= */

.footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

    .footer-links a:hover {
        color: #ffffff;
    }


/* =========================================
   DISCLAIMER AREA
========================================= */

.footer-disclaimer {
    background: #202226;
    border-top: 1px solid rgba(255,255,255,.08);
}

.disclaimer-inner {
    padding-top: 34px;
    padding-bottom: 42px;
}


    /* =========================================
   TITLE
========================================= */

    .disclaimer-inner h4 {
        margin: 0;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.75;
        font-weight: 400;
    }


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.16);
    margin: 24px 0;
}


/* =========================================
   COMPANY GRID
========================================= */

.company-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.company-column {
    min-width: 0;
}

    .company-column p {
        margin: 0 0 18px;
        color: #d8d8d8;
        font-size: 13px;
        line-height: 1.8;
    }

    .company-column strong {
        color: #ffffff;
        font-weight: 700;
    }


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-content p {
    margin: 0 0 18px;
    color: #d6d6d6;
    font-size: 13px;
    line-height: 1.85;
}

.legal-content strong {
    color: #ffffff;
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:992px) {

    .company-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .company-column:last-child {
        grid-column: span 2;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .footer-container {
        padding: 0 18px;
    }

    .footer-top {
        padding: 30px 0 24px;
    }

    .footer-logo {
        width: 125px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .disclaimer-inner {
        padding-top: 26px;
        padding-bottom: 30px;
    }

        .disclaimer-inner h4 {
            font-size: 13px;
            line-height: 1.7;
        }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-column:last-child {
        grid-column: auto;
    }

    .company-column p,
    .legal-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .footer-divider {
        margin: 20px 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px) {

    .footer-container {
        padding: 0 15px;
    }

    .footer-top {
        padding: 24px 0 20px;
    }

    .footer-logo {
        width: 115px;
    }

    .disclaimer-inner h4 {
        font-size: 12px;
    }

    .company-column p,
    .legal-content p {
        font-size: 11.5px;
        line-height: 1.7;
    }
}



/* =========================================
   DBG FOOTER CONTAINER
========================================= */

.dbg-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================
   FOOTER TOP
========================================= */

.dbg-footer-top {
    width: 100%;
    padding: 35px 0;
}


/* =========================================
   BRAND ROW
========================================= */

.dbg-footer-brand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO - LEFT
========================================= */

.dbg-footer-logo {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================
   LINKS - RIGHT
========================================= */

.dbg-footer-links {
    display: flex;
    align-items: center;
}


    .dbg-footer-links a {
        color: #d9d9d9;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: all .25s ease;
    }


        .dbg-footer-links a:hover {
            color: #ffffff;
        }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dbg-footer-container {
        padding: 0 16px;
    }

    .dbg-footer-top {
        padding: 25px 0;
    }

    .dbg-footer-brand {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dbg-footer-logo {
        width: 110px;
    }

    .dbg-footer-links a {
        font-size: 12px;
        white-space: nowrap;
    }
}

.note-message {
    clear: both;
    color: #666;
    font-size: 14px;
    line-height: 1.5715;
    transition: color .3s cubic-bezier(.215, .61, .355, 1);
    padding-top: 0;
}


/* =========================================================
   CONFIRMATION CODE
========================================================= */

.confirmation-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.confirmation-input {
    flex: 1;
    min-width: 0;
}

    .confirmation-input input {
        width: 100%;
    }
.send-code-btn {
    position: relative;
    height: 35px;
    padding: 0 22px;
    background-color: rgba(0, 0, 0, .04);
    border: 1px solid transparent;
    border-radius: 6px;
    color: #cc833e;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

    /* Ant Design style clickable overlay */
    .send-code-btn::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        content: "";
        border-radius: inherit;
        pointer-events: none;
    }

    /* Hover */
    .send-code-btn:hover {
        color: #b86f2f;
        background-color: rgba(0, 0, 0, .06);
    }

    /* Click / Active */
    .send-code-btn:active {
        transform: scale(0.98);
    }
     

    .send-code-btn:disabled {
        color: #999;
        background: #f5f5f5;
        border-color: #d9d9d9;
        cursor: not-allowed;
    }


/* Disabled Input */
.form-input input:disabled {
    background: #e8e7e7;
    color: #999;
    cursor: not-allowed;
    opacity: 1;
}