@media (prefers-color-scheme: light) {
    :root {
        --text-color: rgb(29, 39, 56);
        --background-color: rgb(240, 242, 250);
        --box-background-color: rgb(255, 255, 255);
        --button-background-color: rgb(73, 204, 104);
        --button-hover-background-color: rgb(57, 168, 84);
        --button-text-color: #FFF;
        --h3-text-color: rgb(60, 74, 91);
        --span-text-color: rgb(104, 119, 141);
        --a-text-color: rgb(73, 204, 104);
        --h1-text-color: rgb(60, 74, 91);
        --big-text-color: rgb(104, 119, 141);
        --faq-text-color: rgb(53, 65, 95);
        --faq-dot-color: rgb(104, 119, 141);
        --input-color: rgb(29, 39, 56);
        --label-color: rgb(29, 39, 56);
        --input-border-color: rgb(188, 202, 216);
        --input-background-color: rgb(255, 255, 255);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: rgb(240, 242, 250);
        --background-color: #090d14;
        --box-background-color: rgb(20, 28, 41);
        --button-background-color: rgb(132, 251, 127);
        --button-hover-background-color: rgb(98, 231, 95);
        --button-text-color: rgb(9, 13, 20);
        --h3-text-color: rgb(223, 230, 242);
        --span-text-color: rgb(145, 158, 181);
        --a-text-color: rgb(132, 251, 127);
        --h1-text-color: rgb(223, 230, 242);
        --big-text-color: rgb(145, 158, 181);
        --faq-text-color: rgb(209, 212, 229);
        --faq-dot-color: rgb(145, 158, 181);
        --input-color: rgb(223, 230, 242);
        --label-color: rgb(223, 230, 242);
        --input-border-color: rgb(53, 65, 95);
        --input-background-color: rgb(18, 24, 34);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    touch-action: manipulation;
    font-family: proxima-nova;
}

*::after,
*::before {
    box-sizing: border-box;
}

html {
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

[x-cloak] {
    display: none !important;
}

body {
    height: 100%;
    overflow: hidden;
    width: 100%;
    color: var(--text-color);
    background-color: var(--background-color);
}

button {
    appearance: button;
    -webkit-appearance: button;
}

input,
textarea {
    caret-color: var(--button-background-color);
    outline: none;
}

@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

.brand::before {
    content: "Uphold";
}

.myBg {
    align-items: center;
    justify-content: center;
    left: 0px;
    position: absolute;
    top: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid black;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-shrink: 0;
    list-style: none;
    margin: 0px;
    min-height: 0px;
    min-width: 0px;
    padding: 0px;
    text-decoration: none;
    z-index: -1;
}

.container {
    width: 880px;
    margin: 0 auto;
}

.logo {
    position: absolute;
    left: 20px;
    top: 16px;
}

.logo img {
    width: 100%;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 96px;
    height: 100vh;
}

.left-content {
    display: flex;
    flex: 0 0 50%;
    align-items: center;
    flex-direction: column;
}

.left-content .text {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    text-align: start;
}

.left-content .text h1 {
    color: var(--h1-text-color);
    font-size: 32px;
    letter-spacing: -0.2px;
    line-height: 40px;
    font-weight: 700;
    margin-top: 0px;
}

.left-content .text p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 28px;
    color: var(--big-text-color);
    margin-top: 8px;
}

.content .left-content .image {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid black;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-shrink: 0;
    list-style: none;
    min-height: 0px;
    min-width: 0px;
    padding: 0px;
    position: relative;
    text-decoration: none;
    z-index: 0;
}

.content .right-content {
    height: 610px;
    flex: 0 0 50%;
    background-color: var(--box-background-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 0px;
    min-width: 0px;
    position: relative;
    border-radius: 8px;
    padding: 0 32px;
    padding-top: 32px;
}

.content .right-content .form_title {
    padding-bottom: 32px;
}

.content .right-content .form_title h3 {
    color: var(--h3-text-color);
    font-size: 24px;
    letter-spacing: -0.2px;
    line-height: 32px;
    font-weight: 700;
}

.content .right-content .form_title p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 20px;
    color: var(--span-text-color);
    margin-top: 8px;
}

.content .right-content .form_title p a {
    color: var(--a-text-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.content .right-content .form_title p a:hover {
    text-decoration: underline;
}

.content .right-content .form-group>* {
    flex-shrink: 0;
}

.content .right-content .form-group {
    padding-bottom: 24px;
    padding-top: 0;
    position: relative;
}

.content .right-content .form-group.button-submit {
    padding-bottom: 32px;
}

.content .right-content .form-group label {
    display: block;
    position: static;
    color: var(--label-color);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0 0 8px;
    padding: 0;
    font-weight: 600;
}

label.labelError {
    color: rgb(255, 103, 61) !important;
}

.content .right-content .form-group .err-div {
    transition: border-color 0.2s ease-in-out;
    border-color: var(--input-border-color);
    align-items: center;
    display: flex;
    border-radius: 12px;
    border: 2px solid var(--input-border-color);
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    height: 56px;
    overflow: hidden;
}

.content .right-content .form-group .err-div:hover {
    border-color: rgb(105, 123, 170);
}

.content .right-content .form-group .err-div:focus-within {
    border-color: rgb(165, 176, 207);
}

.content .right-content .form-group .error {
    border-color: rgb(255, 103, 61) !important;
}

.content .right-content .form-group input {
    background-color: transparent;
    color: var(--input-color);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 16px;
    width: 100%;
    min-height: 52px;
}

.content .right-content .form-group .eye,
.content .right-content .form-group .clear {
    cursor: pointer;
    align-items: center;
    display: flex;
    padding: 0 16px 0 8px;
    justify-content: center;
    color: var(--span-text-color);
    background: transparent;
    border: 0;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}

.content .right-content .form-group .clear + .eye {
    padding-left: 0;
}

.content .right-content .form-group .err-div .clear {
    padding-right: 14px;
}

.content .right-content .form-group .eye svg,
.content .right-content .form-group .clear svg {
    color: currentColor;
}

.content .right-content .form-group .clear svg {
    color: #d1d4e5;
}

.content .right-content form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content .right-content form .forgot-password {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 20px;
    color: var(--a-text-color);
    box-shadow: none;
    cursor: pointer;
}

.content .right-content form .forgot-password:hover {
    text-decoration: underline;
}

.button-submit {
    flex: 1 1 0%;
    margin-top: auto;
    align-content: flex-end;
}

.button-submit button {
    align-items: center;
    border-radius: 9999px;
    border-width: 1px;
    display: flex;
    flex-direction: row;
    flex-shrink: 1;
    gap: 8px;
    justify-content: center;
    padding: 9px 23px;
    width: 100%;
    background-color: var(--button-background-color);
    border-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    cursor: pointer;
    pointer-events: all;
    border: 0px solid black;
    list-style: none;
    margin: 0px;
    min-height: 0px;
    min-width: 0px;
    position: relative;
    text-decoration: none;
    z-index: 0;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--button-text-color);
}

.loading-t {
    cursor: not-allowed;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.phone-error {
    border: 1px solid rgb(255, 103, 61) !important;
}

.button-submit button:hover {
    background-color: var(--button-hover-background-color);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 28px;
}

.footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-content p {
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 16px;
    color: rgb(145, 158, 181);
    font-size: 12px;
}

.footer .footer-content .faq {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-content .faq .dot {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 10px;
    color: var(--faq-dot-color);
    margin-left: 4px;
    margin-right: 2px;
}

.footer .footer-content .faq a {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline;
    flex-direction: row;
    color: var(--faq-text-color);
    text-decoration: underline;
    box-shadow: none;
    touch-action: manipulation;
    cursor: pointer;
}

.footer .footer-content .faq a:hover {
    text-decoration: none;
}

.content .right-content .error-message {
    color: rgb(255, 103, 61);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 16px;
    padding: 6px 0 0;
}

span.loader {
    width: 24px;
    height: 24px;
}

.loader svg {
    height: 100%;
    width: 100%;
}

.text-o {
    scroll-padding-bottom: 64px;
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    scroll-snap-align: start;
    scrollbar-color: rgba(145, 158, 181, 0.8) transparent;
    padding: 8px 32px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.text-o h2 {
    margin-top: 16px;
    color: #FF6B6B;
    font-weight: bold;
    margin-bottom: 8px;
}

.alt-content p {
    margin-top: 8px;
    text-align: center;
    color: #D1D4E5;
    line-height: 2;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.main-content {
    height: 100%;
    max-height: 764px;
    background-color: rgb(22, 28, 39);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.main-content .header-form {
    padding: 32px;
}

.main-content .header-form .i-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    background-color: rgb(45, 57, 79);
    color: rgb(223, 230, 242);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.main-content .header-form .i-button svg {
    margin: 0 auto;
}

.form-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.main-content .form-group p:first-child {
    color: #f0f2fa;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 28px;
    font-weight: 700;
    margin-top: 32px;
    text-align: center;
}

.main-content .form-group p.to-confirm {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 20px;
    color: rgb(145, 158, 181);
    margin-top: 8px;
    text-align: center;
}

.main-content .form-group .input-group {
    position: relative;
    width: 100%;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.error-message {
    color: #ff5252;
    font-size: 14px;
    margin-top: -8px;
    margin-bottom: 8px;
}

.verify-button {
    height: 48px;
    background-color: rgb(132, 251, 127);
    border: none;
    border-radius: 24px;
    color: rgb(9, 13, 20);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-button:hover {
    background-color: rgb(152, 255, 147);
}

.verify-button span {
    display: inline-block;
}

.main-content .form-group input[type="tel"] {
    width: 100%;
    height: 48px;
    background-color: #161c27;
    border: 1px solid #65738c;
    border-radius: 8px;
    color: #dfe6f2;
    font-size: 16px;
    padding: 0 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.main-content .form-group input[type="tel"]:focus {
    outline: none;
    border-color: #84fb7f;
}
.main-content .form-group input[type="tel"]::placeholder {
    color: #919eb5;
}

.main-content .body-form {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    padding: 0px 32px;
}

.w-440 {
    width: 440px;
}

@media (max-width: 991px) {
    [x-data="verifyRoot"] {
        background-color: rgb(22, 28, 39);
    }

    .main-content {
        max-height: 100%;
    }

    .main-content .body-form {
        padding: 0 16px;
    }

    .main-content {
        background-color: transparent;
    }
    .left-content {
        display: none;
    }

    .right-content {
        flex: 0 0 100%;
    }

    .container {
        width: 100%;
    }

    .footer {
        z-index: 999999999;
        padding: 0px 28px 28px;
    }

    .footer .footer-content .faq a {
        width: max-content;
    }

    .button-submit {
        padding-bottom: 96px !important;
    }
}

@media (max-width: 850px) {
    .myBg {
        display: none;
    }

    .right-content {
        width: 100%;
        height: 100% !important;
    }

    .content {
        display: block;
        height: 100vh;
        z-index: 999999999;
        position: relative;
    }
}

@font-face {
    font-family: proxima-nova;
    src: url(https://use.typekit.net/af/2555e1/00000000000000007735e603/30/l?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n7&v=3) format("woff2"), url(https://use.typekit.net/af/2555e1/00000000000000007735e603/30/d?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n7&v=3) format("woff"), url(https://use.typekit.net/af/2555e1/00000000000000007735e603/30/a?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n7&v=3) format("opentype");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: proxima-nova;
    src: url(https://use.typekit.net/af/78aca8/00000000000000007735e60d/30/l?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n6&v=3) format("woff2"), url(https://use.typekit.net/af/78aca8/00000000000000007735e60d/30/d?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n6&v=3) format("woff"), url(https://use.typekit.net/af/78aca8/00000000000000007735e60d/30/a?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n6&v=3) format("opentype");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: proxima-nova;
    src: url(https://use.typekit.net/af/efe4a5/00000000000000007735e609/30/l?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n4&v=3) format("woff2"), url(https://use.typekit.net/af/efe4a5/00000000000000007735e609/30/d?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n4&v=3) format("woff"), url(https://use.typekit.net/af/efe4a5/00000000000000007735e609/30/a?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n4&v=3) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: proxima-nova;
    src: url(https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/l?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n3&v=3) format("woff2"), url(https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/d?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n3&v=3) format("woff"), url(https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/a?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n3&v=3) format("opentype");
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: proxima-nova;
    src: url(https://use.typekit.net/af/23e139/00000000000000007735e605/30/l?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n5&v=3) format("woff2"), url(https://use.typekit.net/af/23e139/00000000000000007735e605/30/d?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n5&v=3) format("woff"), url(https://use.typekit.net/af/23e139/00000000000000007735e605/30/a?primer=fff1a989570eb474b8c22c57cc7199e63bfc7e911b750165d0199218f0b7e7cc&fvd=n5&v=3) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}