* {
    box-sizing: border-box;
}

:root {
    --DarkTheme_Black: rgb(12, 12, 12);
    --DarkTheme_Black-2: rgb(20, 20, 20);
    --DarkTheme_Black-3: rgb(30, 30, 30);
    --DarkTheme_Black-4: rgb(40, 40, 40);
    --DarkTheme_Black-blured: rgba(12, 12, 12, 0.5);
    --Theme_SandyBrown: rgb(238, 170, 96);
    --Theme_Russet: rgb(131, 86, 34);
    --Theme_Russet_2: rgb(105, 70, 30);
    --Theme_GoldGradient: linear-gradient(to right, rgb(238, 170, 96), rgb(131, 86, 34));
    --Theme_blurGradient: linear-gradient(to top, rgba(12, 12, 12, 1), rgba(12, 12, 12, 0));
    --Theme_blurGradient-light: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    --Theme_blurGradient-light-bottom: linear-gradient(to bottom, rgba(247, 247, 247, 0.5), rgba(247, 247, 247, 1));
    --Theme_blurGradient-light-top: linear-gradient(to top, rgba(247, 247, 247, 0.5), rgba(247, 247, 247, 1));
    --Theme_blurGradient-dark-bottom: linear-gradient(to bottom, rgba(12, 12, 12, 0.5), rgba(12, 12, 12, 1));
    --Theme_blurGradient-dark-top: linear-gradient(to top, rgba(12, 12, 12, 0.5), rgba(12, 12, 12, 1));
    --Theme_blurGradient-dark-left: linear-gradient(to left, rgba(12, 12, 12, 0.5), rgba(12, 12, 12, 1));
    --Theme_blurGradient-dark-right: linear-gradient(to right, rgba(12, 12, 12, 0.5), rgba(12, 12, 12, 1));
    --Theme_blurGradient-light-left: linear-gradient(to left, rgba(247, 247, 247, 0.5), rgba(247, 247, 247, 1));
    --Theme_blurGradient-light-right: linear-gradient(to right rgba(247, 247, 247, 0.5), rgba(247, 247, 247, 1));
    --Text_LightTheme: rgb(10, 10, 10);
    --Text_DarkTheme: rgb(240, 240, 240);
    --Default_Font: "Raleway", sans-serif;
    --color-raven: #929aa5;
    --LightTheme_white: rgb(247, 247, 247);
    --tooltip-before-background: rgb(12, 12, 12);
    --tooltip-after-background: rgb(20, 20, 20);
    --tooltip-width: 100px;
    --number-text: 'Times New Roman', Times, serif;
    --color-red: rgb(255, 50, 50);
    --vivid-gamboge: #ff9501;
    --ufo-green: #22d675;


}


body {
    padding: 0;
    margin: 0;
    font-family: var(--Default_Font);
    
}


header {
    display: flex;
    height: auto;
    width: 100%;
    position: sticky;
    top: 0;
    padding-inline: 20px;
    z-index: 3;
    padding: 20px;
    justify-content: space-between;
}

header ._logo {
    margin-block: auto;
    display: flex;
    margin-inline: 0;

}
header > ._logo > img {
    padding: 0;
    margin-block: auto;
    height: 32px;
    aspect-ratio: 1;
}
header > ._logo > p {
    font-size: 18px;
    font-weight: 700;
    margin-block: auto;
    margin-left: 10px;
}

header > .support {}
header > .support > button {
    display: flex;
    margin-block: auto;
    padding: 8px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: var(--DarkTheme_Black-3) !important;
}
header > .support > button > span {
    margin-block: auto;
    font-size: 20px !important;
    font-weight: 600;
    
}
header > .support > button > p {
    font-size: 14px;
    font-weight: 600;
    margin-inline: 8px;
    margin-block: auto;
    font-family: var(--Default_Font);
}
header > .support > button:hover {
    background-color: var(--DarkTheme_Black-4) !important;
}
header > .support > div {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}
header > .support > div > .cover {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;    
}
header > .support > div > .main {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    max-width: 300px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
    
}
header > .support > div > .main > div {
    position: relative;
    display: flex;
    padding: 5px;
    padding-inline: 20px;
}
header > .support > div > .main > div > hr {
    border-color: var(--DarkTheme_Black-4);
    border-style: solid;
    border-width: 1px;
    width: 100%;
    margin-block: auto;

}
header > .support > div > .main > div > span {
    color: var(--color-raven);
    margin-block: auto;
    font-size: 10px;
    padding-inline: 10px;
    font-weight: 500;
}
header > .support > div > .main > button {
    padding-block: 14px;
    padding-inline: 20px;
    font-family: var(--Default_Font);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}
header > .support > div > .main > button:nth-of-type(1) {
    background-color: var(--Theme_SandyBrown);
    color: #000;
}
header > .support > div > .main > button:nth-of-type(2) {
    background-color: rgb(40, 40, 40);
    font-weight: 600;

}

header div {
    margin-left: auto;
    margin-block: auto;
}
header div p {

}
header div span {

}


.main-body {
    display: flex;
    width: 100%;
}

form {
    margin-block: 100px;
    margin-inline: 20%;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;

}



#main-header {
    max-height: 0px;
    overflow: visible;

    
}
#main-header div {
    margin: 0 auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    padding: 5px;
    z-index: 2;
    
}
#main-header div span {
    color: var(--Theme_SandyBrown);
    font-size: 12px;
    margin: 2px;
    display: block;
}

section {
    width: 100%;
}

.header {
    padding-block: 8px;
    padding-inline: 20px;
    display: flex;

}

.header p {
    font-size: 16px;
    font-weight: 700;
}
.header span {
    font-size: 18px;
    margin-block: auto;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: -5px;
    margin-right: 10px;
}
.info-icon {
    margin-left: auto !important;
    margin-right: 0 !important;
    font-weight: 600;
}


.body {
    padding: 20px;
    width: 100%;
    margin-block: 20px;

}

.body span {
    padding-inline: 8px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--DarkTheme_Black-2);
    display: block;
    border-radius: 5px;
    translate: 35px 38px;
    transition: font-size 0.3s, translate 0.3s;
}

.body input {
    padding: 20px;
    padding-inline: 35px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--Default_Font);
    border: 1px solid;
    border-radius: 15px;
    outline: none;
}

.--input-focused {
    border-color: gray !important;
}

#password-box {
    display: flex;
    justify-content: right;
}
#password-box span {
    translate: 0;
    margin-top: 22px;
    margin-right: 5px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    display: none;

    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 200,
    'opsz' 48
}

#resendOtpBtn {
    color: var(--Theme_SandyBrown);
    font-size: 12px;
    font-weight: 600;
    padding-block: 10px;
    margin: 0;
    text-align: right;
    cursor: pointer;

}

.footer {
    padding-block: 20px;
    padding-inline: 20px;
    width: 100%;
    display: flex;
    
}
.footer > p {
    font-size: 14px;
    font-weight: 600;
    color: var(--Theme_SandyBrown);
    display: flex;
    position: relative;
}
.footer > p > a {
    color: var(--Theme_SandyBrown);
    text-decoration: none;
    text-wrap: nowrap;
    transition: all 0.1s;
    
}
.footer > p > span {
    font-size: 16px !important;
    margin-left: 3px;
    margin-block: auto;
    cursor: pointer;
    transition: all 0.1s;
    transform-origin: top left;

    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 200,
    'opsz' 20
}
.footer > p:hover > span {
    scale: 1.12;
}
.footer > p:hover > a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer > button {
    position: relative;
    background-color: var(--Theme_SandyBrown);   
    font-family: var(--Default_Font);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    display: block;
    margin-left: auto;
    cursor: pointer;
    height: fit-content;
    transition: all 0.2s;

}

.button::after {
    transition: all 0.2s;
    opacity: 0;
}

.button span {
    display: block;
    height: 100%;
    width: 100%;
    padding-block: 12px;
    padding-inline: 50px;
    /* transition: all 0.2s; */
}

.--loading-1 span {
    visibility: hidden;
    opacity: 0;
}
.--loading-1::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    /* border-top-color: #1010104D; */
    border-top-color: black;
    /* border-right-color: black;
    border-bottom-color: black; */
    border-radius: 50%;
    animation: --loading-1-spinner 1s ease infinite;
    opacity: 1;

}

@keyframes --loading-1-spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

footer {
    padding: 20px;
}



#OTP_body {
    display: flex;
    justify-content: center;
    padding-block: 50px;
    padding-inline: 10px;
    width: 100%;
    border: 2px solid;
    overflow-x: auto;
}
#OTP_body::-webkit-scrollbar  {
    display: none;
}
/* #OTP_cover {
    position: absolute;
    margin-top: -50px;
} */

#OTP_body > input {
    display: block;
    padding: 0;
    margin: 5px;
    width: 50px;
    height: 60px;
    min-height: 60px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid;
    transition: width 0.3s, height 0.3s;

}
@media only screen and (max-width: 700px) {
    #OTP_body > input {
        width: 40px;
        height: 50px;
    }
}
#OTP_body > input:focus {
    border-color: gray !important;
}
#OTP_info {
    font-size: 12px;
    font-weight: 600;
}
#user_info {
    font-size: 12px;
    font-weight: 600;
}

#otp-error-resend-body {
    display: flex;
    justify-content: space-between;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=checkbox] {
    display: inline;
    padding: 0;
    margin: 0;
    width: fit-content;
    cursor: pointer;
}


/* #checkbox {
    display: flex;
}
#checkbox > span{
    display: block;
    padding: 0;
    margin: 0;
    translate: 0;
    margin-block: auto;
}
#checkbox a {
    color: var(--Theme_SandyBrown);
    text-decoration: none;
}
 */

#accept_TC {
    display: block;
    translate: unset !important;
    padding-inline: 0;
    margin-top: 10px;
    font-size: 12px;
}
#accept_TC p {
    margin: 0;
    line-height: 24px;
}
#accept_TC p a {
    color: var(--Theme_SandyBrown);
    text-decoration: none;
}


.errors {
    max-height: 0;
    overflow: hidden;
    display: none;
    transition: max-height 0.3s;
}


.error {
    margin: 0;
    padding: 0;
    color: var(--color-red);
    font-weight: 500;
    text-align: left;
    width: auto;
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.error span {
    translate: unset !important;
    margin: 0;
    display: block;
    margin-block: auto;
    padding-block: 10px;
    padding-inline: 0;
    font-size: 12px !important;

}
.error span:first-of-type {
    font-size: 14px !important;
}

.--error-active-error {
    border-color: var(--color-red) !important;
}
.--error-active-error:focus {
    border-color: var(--color-red) !important;
}

.--error-active-warning {
    border-color: var(--vivid-gamboge) !important;
}
.--error-active-warning:focus {
    border-color: var(--vivid-gamboge) !important;
}

.--label-active-error {
    color: var(--color-red) !important;
}
.--label-active-okay {
    color: var(--ufo-green) !important;
}


.--label-active-warning {
    color: var(--vivid-gamboge) !important;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 10;
    background-color: rgba(0,0,0,0.3);
    display: none;
}
#loader > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    margin: auto;
    height: fit-content;
    width: fit-content;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#loader > div > div {
    width: 14px;
    height: 14px;
    margin: 10px;
    border: 3px solid transparent;
    border-top-color: var(--Theme_SandyBrown);
    border-radius: 50%;
    /* animation: --loading-1-spinner 1s ease infinite; */
    opacity: 1;
    display: flex;

}
#loader > div > p {
    font-size: 12px;
    font-weight: 600;
    margin: 10px;

    color: var(--Theme_SandyBrown);

}

.--load-anim {
    animation: --loading-1-spinner 1s ease infinite;
}




#visibility_icon,
#visibility-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    text-align: center;
    translate: 0;
    margin-top: 19px;
    margin-right: 2px;
    border-radius: 15px;
    font-size: 20px;
    cursor: pointer;    
}
#visibility-icon {
    margin: 2px !important;
}

#password-span {
    position: relative;
    z-index: 10 !important;
}

.errors .pass_error span {
    padding: 5px;
}
.errors .pass_error:first-of-type {
    margin-top: 5px;
}
.errors .pass_error > span:first-of-type {
    font-size: 12px !important;
}
.errors .pass_error > span:last-of-type {
    margin-block: auto;
}


#max-600 {
    display: none;
    margin-top: 25px;
}


@media only screen and (max-width: 600px) {
    form {
        margin-inline: 20px;
    }

    .footer {
        display: block;
    }
    .footer button {
        width: 100%;
        transition: all 0.2s;
        display: block;
    }

    #min-600 {
        display: none;
    }
    #max-600 {
        display: flex;
    }
}