@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', "TOSSans", sans-serif;
    --scrollbarBG: #000;
    --thumbBG: #999;
    scrollbar-color: #999 #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 30px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    height: 60px;
}

.language-selector {
    color: #00B7FF;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chevron-down {
    margin-left: 4px;
}

.login-content h1 {
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #fff;
}

input[type="text"],input[type="password"] {
    background: #000;
    color: #fff !important;
    padding: 0 16px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: solid 1px #CCCCCC;
    border-radius: 4px;
    vertical-align: middle;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:hover,input[type="password"]:hover {
    border-color: #037dae;
}

input[type="text"]:focus,input[type="password"]:focus {
    border-color: #fff;
    outline: 1.2px solid #fff;
}
.toggle-password {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.toggle-password:hover {
    color: #fff;
}
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.back-link {
    font-weight: 500;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #00B7FF;
}

.checkbox-group label {
    font-size: 15px;
    cursor: pointer;
}

.submit-btn {
    background-color: #00B7FF;
    color: #000;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border: solid 1px #005F83;
    text-align: center;
    border-radius: 4px;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background-color 0.2s;
    margin-top: 25px;
}

.submit-btn:hover {
    background-color: #0096d1;
}

.login-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-links a {
    color: #00B7FF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    margin: 5px auto;
}

.login-links a:hover {
    text-decoration: underline;
}
.pass_area {
    transform: translateX(100%);
    opacity: 0;
}
.user_area,
.pass_area{
    position: relative;
    width: 100%;
    transition: transform .5s ease, opacity .5s ease;
}
.pass_area{
    display: none;
    transform: translateX(100%);
    opacity: 0;
}

.hidden {
    display: none !important;
}

.user_area.hide{
    transform: translateX(-100%);
    opacity: 0;
}

.pass_area.show{
    display: block;
    transform: translateX(0);
    opacity: 1;
}
.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}
footer{
    padding: 16px 0 0;
    position: relative;
    padding-top: 40px;
    margin-top: 40px;
}
footer p a {
    color:#00B7FF;
}
footer p {
    display: block;
      margin-block-start: 11px;
      margin-block-end: 11px;
      margin-inline-start: 0px;
      margin-inline-end: 0px;
      unicode-bidi: isolate;
      color: #999999;
      margin: 0 0 10px;
      font-size: 11px;
      font-weight: 300;
}
.loader_btn {
  width: 18px;
  aspect-ratio: 1;
  display: none;
  border-radius: 50%;
  background:
    linear-gradient(0deg ,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%,
    linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
  margin: 0 auto;
}
.loader_btn::before,
.loader_btn::after {
   content: "";
   grid-area: 1/1;
   border-radius: 50%;
   background: inherit;
   opacity: 0.915;
   transform: rotate(30deg);
}
.loader_btn::after {
   opacity: 0.83;
   transform: rotate(60deg);
}
@keyframes l23 {
  100% {transform: rotate(1turn)}
}

.wait-text {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
}

.sub-text {
    font-size: 14px;
  color: #999;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 80px;
}

.custom-spinner {
    position: relative;
    width: 64px;
    height: 64px;
}

.spinner-ring {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    border: 4px solid #333;
    border-radius: 50%;
    border-top-color: #00B7FF;
    animation: spin 1s linear infinite;
}

.spinner-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00B7FF;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.verification-notice {
    font-size: 15px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 300;
  line-height: 22px;
}
.info-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-top: 2px;
    fill: rgb(0, 183, 255);
}
.info-icon.inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}
.action-links {
    margin-bottom: 35px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.separator {
    color: #666;
}

.checkbox-section {
    margin-bottom: 40px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

.tos-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #CCCCCC;
    border-radius: 2px;
    background: #000;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
}

.tos-checkbox:checked {
    background: #00B7FF;
    border-color: #00B7FF;
}

.tos-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container label {
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
}

.recognition-link {
    margin-left: 28px;
    font-size: 15px;
    color: #fff;
}

.submit-button {
    background-color: #00B7FF;
    color: #000;
    height: 48px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    border: solid 1px #005F83;
    text-align: center;
    border-radius: 4px;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #0096d1;
}

.text-button {
    background: transparent;
    border: none;
    color: #00B7FF;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 60px;
}

.text-button:hover {
    text-decoration: underline;
}

.link-blue {
    color: #00B7FF;
    text-decoration: none;
}

.link-blue:hover {
    text-decoration: underline;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #00B7FF;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #00B7FF;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #00B7FF;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}
@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px transparent; }
}

.page-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #fff;
}

.thanks-message {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.info-box {
    background: #111;
    border-left: 4px solid #00B7FF;
    padding: 20px;
    margin: 24px 0;
    text-align: left;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    font-size: 16px;
    color: #00B7FF;
    font-weight: 600;
}

.info-box p {
    margin-bottom: 0;
    font-size: 14px;
}

.redirect-notice {
    font-weight: 300;
  color: #999;
  margin-top: 20px;
  font-size: 14px;
}

#countdown {
    color: #00B7FF;
    font-variant-numeric: tabular-nums;
}

.security-reminder {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 60px;
}
