*,
*::before,
*::after {
  margin: 0;
}

:root {
  --bg-color: #1d2125;
  --ff-open: 'Open Sans', sans-serif;
  --fw-body: 300;
  --fw-bold: 800;
  --fw-title: 400;
  --fw-number: 800;
}

body {
  background: var(--bg-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: var(--ff-open);
  height: 100vh;
}

input {
    box-sizing: border-box;
    outline: none;
    border: none;
    padding: 0;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
  outline: 2px solid #00d7d3 !important;
}

/* Autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  filter:none;
  -webkit-text-fill-color: #cedcf5;
  transition: background-color 50000s ease-in-out 0s;
}


input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

.login-container {
    min-height: 95vh;
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.login-wraper {
    width: 380px;
    border-radius: 10px;
    background: rgb(12 18 28 / 49%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-clip: padding-box;
    overflow: hidden;
    padding: 45px 45px 33px 45px;
    z-index: 9999;
}

.form-login-toptitle {
    font-weight: 800;
    font-size: 13px;
    padding-bottom: 8px;
    text-transform: uppercase;
    color: #00d8d2;
    letter-spacing: 1px;
}

.form-login-title {
    display: block;
    font-size: 47px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: left;
    padding-top: 25px;
    padding-bottom: 55px;
}

.form-login-message {
    font-size: 17px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: left;
    margin-top: -30px;
    padding-bottom: 55px;
}

.form-reset-message {
    font-size: 17px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: left;
    margin-top: -30px;
    padding-bottom: 15px;
}

.filled-form {
    opacity: 0;
    animation: fill 1.5s forwards;
}

@keyframes fill {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hide {
    display: none;
}

.login-wraper b {
    font-weight: 700;
    background: -webkit-linear-gradient(to right bottom, #418dff, #00b6ff, #00d4e5, #00e68b, #a8eb12);
    background: -o-linear-gradient(to right bottom, #418dff, #00b6ff, #00d4e5, #00e68b, #a8eb12);
    background: -moz-linear-gradient(to right bottom, #418dff, #00b6ff, #00d4e5, #00e68b, #a8eb12);
    background: linear-gradient(to right bottom, #418dff, #00b6ff, #00d4e5, #00e68b, #a8eb12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrap-password-reminder {
    display: flex;
    margin-top: 5px;
    margin-bottom: 40px;
}

.wrap-password-reminder a {
    font-family: var(--ff-open);
    font-size: 13px;
    color: #00d7d3;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    text-decoration: none;
}

.wrap-password-reminder a:hover {
    text-decoration: underline;
}

.wrap-register-account p {
    font-family: var(--ff-open);
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.wrap-register-account a {
    color: #00d7d3;
    font-family: var(--ff-open);
    font-weight: 600;
    text-decoration: none;
}
.wrap-register-account a:hover {
    text-decoration: underline;
}

.wrap-password-reminder p:hover {
    cursor: pointer;
    text-decoration: underline;
}

.error-login {
    margin-top: -20px;
    margin-bottom: 40px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    display: none;
}

.form-login-error {
    -webkit-transition: all 4s;
    -o-transition: all 4s;
    -moz-transition: all 4s;
    transition: all 4s;
    max-width: 70%;
    letter-spacing: 0.8px;
    background-color: #e84332;
    background: -webkit-linear-gradient(right, #e84332, #ff2192);
    background: -o-linear-gradient(right, #e84332, #ff2192);
    background: -moz-linear-gradient(right, #e84332, #ff2192);
    background: linear-gradient(right, #e84332, #ff2192);

    border-radius: 5px;
    padding: 4px 5px 4px 6px;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;

    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;

    visibility: visible;
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.wrap-input-login {
    width: 100%;
    position: relative;
}

.input-separate {
    margin-bottom: 45px;
}

.input-login {
    font-size: 18px;
    color: #cedcf5;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    height: 50px;
    background: #1f282f;
    border-radius: 4px;
    padding: 0 45px 0 10px;
}

.focus-input-login {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input-login::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 3px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

}

.focus-input-login::after {
    font-size: 15px;
    color: #818b9d;
    font-weight: 500;
    line-height: 1.2;

    content: attr(data-placeholder);
    display: block;
    position: absolute;
    top: 16px;
    padding-left: 5px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    letter-spacing: 0.5px;
}

.input-login:focus + .focus-input-login::after {
    top: -22px;
    left: -5px;
}

.input-login:focus + .focus-input-login::before {
    width: 100%;
}

.has-val.input-login + .focus-input-login::after {
    top: -22px;
    left: -5px;
}

.has-val.input-login + .focus-input-login::before {
    width: 100%;
}

.container-login-btn {
    float: left;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wrap-login-btn {
    width: 125px;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

.submit-form-btn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #3E92B7;
    background: -webkit-linear-gradient(right, #4A87BE, #55C82D, #4A87BE, #55C82D);
    background: -o-linear-gradient(right, #267FE1, #39C807, #267FE1, #39C807);
    background: -moz-linear-gradient(right, #267FE1, #39C807, #267FE1, #39C807);
    background: linear-gradient(right, #267FE1, #39C807, #267FE1, #39C807);
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-button-text {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    letter-spacing: 0.5px;
}

.login-button-text a {
    color: #fff;
    text-decoration: none;
}

.wrap-login-btn:hover .submit-form-btn {
    left: 0px;
}

@media (max-width: 576px) {
  .login-wraper {
    margin: 10px;
    padding: 50px 15px 33px 15px;
  }
}

.validate-input {
    position: relative;
}

.data-validate-message {
    position: absolute;
    color: #e61540;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    display: none;
}

.alert-validate::before {
    font-family: var(--ff-open);
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    letter-spacing: 0.8px;
    background-color: #e84332;
    background: -webkit-linear-gradient(right, #e84332, #ff2192);
    background: -o-linear-gradient(right, #e84332, #ff2192);
    background: -moz-linear-gradient(right, #e84332, #ff2192);
    background: linear-gradient(right, #e84332, #ff2192);

    border-radius: 5px;
    padding: 4px 5px 4px 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;

    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;

    visibility: visible;
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 1;
    margin-right: 10px;
}

.alert-validate::after {
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
  }
}

@media (max-width: 420px) {
    .form-login-title {
        font-size: 35px;
    }
    .alert-validate::before {
        content: attr(data-validate-mobile);
  }
}

.shakeit {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;

}

.icon-input-login {
    color: #818b9d;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 17px;
}


/* Landing */


.header {
    margin: 0 auto;
    height: 65px;
    width: 100%;
    border-bottom: 1px solid #a7b1bc1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(12, 18, 28, 0.49);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.containter_wrapper {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 890px;
  margin: 0 auto;
  margin-top: 190px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  flex-direction: column;
}

.landing-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.container-header {
  background: #26383c;
  padding: 4px 25px;
  border-radius: 35px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.container-header p {
  font-size: 0.9rem;
  color: #00D7D3;
  font-weight: 600;
  text-align: center;
}

.img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #31535b;
  padding: 5px;
  border-radius: 25px;
  margin: 0 auto;
}

.img-wrapper img {
  width: 20px;
  display: block;
}

.landing-container h1 {
  font-size: 3.9rem;
  color: #f1f4f8;
  font-weight: var(--fw-bold);
  text-align: center;
}

.menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.menu-wrapper a,
.menu-wrapper a:visited {
  text-decoration: none;
  color: #f1f4f8;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
}

.menu-wrapper a:hover {
  height: 100%;
  background: #26383c69;
}

.login_landing {
  width: 100px;
  text-align: center;
  display: flex;
  cursor: pointer;
}

.start {
    background: #3E92B7;
    background: -webkit-linear-gradient(right, #4A87BE, #55C82D);
    background: -o-linear-gradient(right, #267FE1, #39C807);
    background: -moz-linear-gradient(right, #267FE1, #39C807);
    background: linear-gradient(right, #267FE1, #39C807);
    padding: 3px 3px;
    width: 100px;
    border-radius: 25px;
    color: #f1f4f8;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    cursor: pointer;
    justify-content: flex-start;
    align-items: baseline;
}
.start a {
    font-weight: 800;
}

.start-p {
    background: #26383c;
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 15px;
    border-radius: 22px;
}

.login-p {
    width: 100%;
    height: 100%;
    display: block;
    padding: 13px 15px;
    border-radius: 22px;
}

.start:hover {
  background: #02b3b0;
}

.start-p:hover {
  background: #02b3b0;
  animation: slidein 2.8s ease infinite;
}

.start-now-button {
  margin-top: 30px;
  display: flex;
  align-items: center;
  background: #3E92B7;
  background: -webkit-linear-gradient(left, #4A87BE, #55C82D);
  background: -o-linear-gradient(left, #267FE1, #39C807);
  background: -moz-linear-gradient(left, #267FE1, #39C807);
  background: linear-gradient(left, #267FE1, #39C807);
  padding: 12px 25px;
  border-radius: 10px;
  height: 40px;
  color: #f1f4f8;
  text-decoration: none;
  font-size: 1.29rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
  transform: translateY(0px);
}

.start-now-button:hover {
  animation: slidein 2.8s ease infinite;
  background: #02b3b0;
  transform: translateY(-3px);
}

@keyframes slidein {
  0% {
    outline: 2px solid #00d7d3;
  }

  30% {
    outline: 30px solid #1f282f00;
  }
  100% {
    outline: 30px solid #1f282f00;
  }
}

.main-image {
  margin-top: 150px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  /* overflow: hidden; */
  /* animation: glow-animation 15s infinite alternate ease-in-out; */
  box-shadow: #00D7D3 0px 0px 150px 0px;
  border-radius: 8px;
}

@keyframes glow-animation {
  0% {
  }
  100% {
    box-shadow: #02a47b 0px 0px 150px 0px;
  }
}

.main-image img {
  /* overflow: hidden; */
  /* display: block; */
    border-radius: 8px;
  outline: 2px solid #00d7d32f;
  position: relative;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.main-image img:hover {
  transition: all 0.4s ease-in-out;
  transform: scale(1.02);
}

@media (max-width: 500px) {
  .start {
    padding: 3px 3px;
  }

  .start-p {
    padding: 7px 5px;
  }

  .header-wrapper {
    width: 100%;
    padding: 0 10px;
  }

  .containter_wrapper {
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 150px;
  }

  .container h1 {
    font-size: 2.5rem;
  }

  .menu-wrapper a,
  .menu-wrapper a:visited {
    padding: 10px 10px;
  }

  .start-now-button {
    font-size: 1rem;
    padding: 10px 20px;
    height: 35px;
  }

  .main-image {
    margin-top: 110px;
    max-width: 100%;
  }

  .container-header p {
    font-size: 0.8rem;
  }
}

