@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#signin_body{
  display: none;
}

#signin_container{
  display: none;
}
@-webkit-keyframes backgroundScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -400px 0;
  }
}

@keyframes backgroundScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -400px 0;
  }
}

@media (prefers-color-scheme: light) {
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/bg-light.png");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    -webkit-animation: backgroundScroll 80s linear infinite;
    animation: backgroundScroll 80s linear infinite;
  }

  .container {
    position: fixed;
    max-width: 430px;
    width: 100%;
    min-height: 630px;
    max-height: auto;
    padding: 48px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(255, 255, 255, 0);
    box-shadow: inset 0px 0px 2px #fefefed1;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    margin: auto;
  }

  .container header {
    font-size: 28px;
    font-weight: 600;
    color: #006eff;
  }

  .container h {
    font-size: 18px;
    font-weight: 600;
    color: #006eff;
  }

  .logo {
    margin-top: -20px;
    color: black;
  }

  .logo .logo_name {
    display: inline-flex;
    position: relative;
    font-size: 31px;
  }

  .logo i {
    font-size: 28px;
    line-height: 300%;
  }

  .container h2 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #001024;
  }

  .container h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #006eff;
  }

  .container form {
    margin-top: 30px;

  }

  form .field {
    margin-bottom: 20px;
  }

  form .input-field {
    position: relative;
    height: 55px;
    width: 100%;
  }

  .input-field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #04083a;
    border: 1.5px solid #e3ecff00;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgb(235, 246, 255);
  }

  .input-field input:focus {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #04083a;
    border: 1.5px solid #006eff;
    border-top-width: 0px;
    border-bottom-width: 3px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
  }

  .invalid input {
    border-color: #ff1100;
  }

  .input-field .show-hide {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #006eff;
    cursor: pointer;
    padding: 3px;
  }

  .field .error {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #ff1100;
    font-size: 13px;
    display: none;
  }

  .invalid .error {
    display: flex;
  }

  .error .error-icon {
    margin-right: 6px;
    font-size: 15px;
  }

  .create-password .error {
    align-items: flex-start;
  }

  .create-password .error-icon {
    margin-top: 4px;
  }

  .select-box select {
    height: 55px;
    margin-bottom: 20px;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #04083a;
    border: 1.5px solid #e3ecff00;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgb(235, 246, 255);
    backdrop-filter: blur(8px);
  }

  .button {
    margin: 25px 0 6px;
    background-color: #11ffb800;
    margin-bottom: 100px;
    margin-top: 20px;
  }

  .button input {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 4px solid rgb(0, 0, 0);
    background-color: #ffffff00;
  }

  .button input:hover {
    transform: scale(0.9);
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000;
    cursor: pointer;
  }

  form .text h3 {
    margin-top: 8px;
    color: #333;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  form .text h3 a {
    color: #006eff;
    font-size: 15px;
    text-decoration: none;
  }

  form .text h3 a:hover {
    color: #000000;
    text-decoration: underline 2px;
    text-underline-offset: 6px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/dark.png");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    -webkit-animation: backgroundScroll 80s linear infinite;
    animation: backgroundScroll 80s linear infinite;
  }

  .container {
    position: fixed;
    max-width: 430px;
    width: 100%;
    min-height: 630px;
    max-height: auto;
    padding: 48px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.404) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 2px #131313d1;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    margin: auto;
  }

  .container header {
    font-size: 28px;
    font-weight: 600;
    color: #8FBFFF;
  }

  .logo {
    margin-top: -20px;
    color: white;
  }

  .logo .logo_name {
    display: inline-flex;
    position: relative;
    font-size: 31px;
  }

  .logo i {
    font-size: 28px;
    line-height: 300%;
  }

  .container h {
    font-size: 18px;
    font-weight: 600;
    color: #8FBFFF;
  }

  .container h2 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #000724;
  }

  .container h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #8FBFFF;
  }

  .container form {
    margin-top: 30px;

  }

  form .field {
    margin-bottom: 20px;
  }

  form .input-field {
    position: relative;
    height: 55px;
    width: 100%;
  }

  .input-field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #e9ebff;
    border: 1.5px solid #e3ecff00;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #1f2e3f;
  }

  .input-field input:focus {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    border: 1.5px solid #8FBFFF;
    border-top-width: 0px;
    border-bottom-width: 3px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
  }

  .invalid input {
    border-color: #ff756c;
  }

  .input-field .show-hide {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8FBFFF;
    cursor: pointer;
    padding: 3px;
  }

  .field .error {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #ffa29c;
    font-size: 13px;
    display: none;
  }

  .invalid .error {
    display: flex;
  }

  .error .error-icon {
    margin-right: 6px;
    font-size: 15px;
  }

  .create-password .error {
    align-items: flex-start;
  }

  .create-password .error-icon {
    margin-top: 4px;
  }

  .select-box select {
    height: 55px;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #e9ebff;
    border: 1.5px solid #e3ecff00;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #1f2e3f;
    backdrop-filter: blur(8px);
  }

  .button {
    margin: 25px 0 6px;
    background-color: #11ffb800;
    margin-bottom: 100px;
    margin-top: 20px;
  }

  .button input {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 4px solid rgb(255, 255, 255);
    background-color: #ffffff00;
  }

  .button input:hover {
    transform: scale(0.9);
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    background-color: #ffffff;
    cursor: pointer;
  }

  form .text h3 {
    margin-top: 8px;
    color: #ececec;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  form .text h3 a {
    color: #8FBFFF;
    font-size: 15px;
    text-decoration: none;
  }

  form .text h3 a:hover {
    color: #ffffff;
    text-decoration: underline 2px;
    text-underline-offset: 6px;
  }
}

@media (max-width: 500px) {
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/bg-mobile.png");
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    -webkit-animation: backgroundScroll 15s linear infinite;
    animation: backgroundScroll 15s linear infinite;
  }

  .container {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    padding: 48px;
    border-radius: 25px;
    margin: auto;
    box-shadow: none;
    border: #e9ebff00;
    background-color: rgba(255, 255, 255, 0.651) !important;
    box-shadow: inset 0px 0px 2px #fefefe00;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    z-index: 10;
  }

  .container header {
    margin-top: 30%;
    font-size: 25px;
    font-weight: 600;
    color: #ff9900;
  }

  .logo .logo_name {
    align-items: center;
    display: inline-flex;
    position: relative;
    font-size: 31px;
    margin-top: 28%;
    color: black;
  }

  .logo i {
    font-size: 28px;
    line-height: 300%;
    color: black;
  }

  .container h {
    font-size: 16px;
    font-weight: 600;
    color: #ff9900;
  }

  .container h2 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #241a00;
  }

  .container h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #ff9900;
  }

  .container form {
    margin-top: 30px;

  }

  form .field {
    margin-bottom: 20px;
  }

  form .input-field {
    position: relative;
    height: 55px;
    width: 100%;
  }

  .input-field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 300;
    color: #3a2404;
    border: 1.5px solid #fffbe300;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffedcf;
  }

  .input-field input:focus {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 400;
    color: #3a2c04;
    border: 1.5px solid #ff9900;
    border-top-width: 0px;
    border-bottom-width: 3px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
  }

  .select-box select {
    height: 55px;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 300;
    color: #3a2404;
    border: 1.5px solid #fffbe300;
    border-bottom-width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffedcf;
    backdrop-filter: blur(8px);
  }

  .invalid input {
    border-color: #ff1100;
  }

  .input-field .show-hide {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #ff9900;
    cursor: pointer;
    padding: 3px;
  }

  .field .error {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #ff1100;
    font-size: 11px;
    display: none;
  }

  .invalid .error {
    display: flex;
  }

  .error .error-icon {
    margin-right: 6px;
    font-size: 14px;
  }

  .create-password .error {
    align-items: flex-start;
  }

  .create-password .error-icon {
    margin-top: 4px;
  }

  .button {
    margin: 25px 0 6px;
    background-color: #ffd31100;
    margin-bottom: 100px;
    margin-top: 20px;
  }

  .g-recaptcha {
    margin-left: auto !important;
  }

  .button input {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 4px solid rgb(0, 0, 0);
    background-color: #ffffff00;
  }

  .button input:hover {
    transform: scale(0.9);
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
    cursor: pointer;
  }

  form .text h3 {
    margin-top: 8px;
    color: #333;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  form .text h3 a {
    color: #ff9900;
    font-size: 13px;
    text-decoration: none;
  }

  form .text h3 a:hover {
    color: #000000;
    text-decoration: underline 2px;
    text-underline-offset: 6px;
  }
}