@font-face {
  font-family: Opensans;
  src: url('../fonts/opensans.ttf');
}

@font-face {
  font-family: Opensansl;
  src: url('../fonts/opensans-light.ttf');
}

@font-face {
  font-family: Opensansb;
  src: url('../fonts/opensans-bold.ttf');
}

body {
  /* overflow:hidden; */
}

.bg {
  /* background: linear-gradient(180deg, #1b1d29 0%, #000000 100%); */
  /* background-image: linear-gradient(180deg, #2d1b4f, #030112 20%); */
  background: #030112;
}

body::after {
  /* content: "";
    background: url(../img/main-promo-bg2.jpg) no-repeat;
    background-size: cover;
    opacity: 0.4;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: -1;
    backdrop-filter: blur(11.5px);  */
}

.login__logo {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 35px;
  margin-left: 109px;
}

.login__container {
  /* display: flex;
    justify-content: center;
    align-items: center; */
  height: 100%;
  /*width: 100%;*/
  position: relative;
}

.login__form-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.login__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  /* padding: 2rem; */
  border-radius: 8px;
  text-align: left;
  width: 400px;
}

.login__form-blur {
  position: absolute;
  content: '';
  background: #4e44ce;
  width: 222px;
  height: 222px;
  left: -111px;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  filter: blur(250px);
}

.login__form-blur-bottom {
  position: absolute;
  content: '';
  background: #4e44ce;
  width: 222px;
  height: 222px;
  right: -222px;
  bottom: -222px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(250px);
}

.login__title {
  font-family: 'Opensans';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #868b8a;
}

.login__title:hover {
  color: #777;
}

.select {
  color: #fff;
}

.login__fieldset {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  /* margin-bottom: 50px; */
}

.login__input-label {
  font-family: 'Opensans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  margin-bottom: 8px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* -webkit-box-shadow: 0 0 0 30px #162044 inset !important; */
  -webkit-text-fill-color: #ffffff;
}

input:-webkit-autofill::first-line {
  font-family: 'Opensans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.login__input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #555;
  border-radius: 5px;
  color: #fff;
  background-color: #ffffff00;
  height: 42.5px;
}

::placeholder {
  color: #555;
}

.login__button {
  min-height: 48px;
  width: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verde);
  color: #fff;
  font-family: 'Opensans';
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  border: none;
  font-weight: bold;
  transition: all 0.4s;
}

.login__button:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 50px var(--verde);
}

.login__text-container {
  display: flex;
  gap: 10px;
  /* margin-top: 30px; */
  justify-content: center;
}

.login__text {
  font-family: 'Opensans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #777;
}

.login__text:hover {
  /* color: var(--verde);
    text-decoration: none; */
}

.hide {
  display: none !important;
}

.login__link {
  font-family: 'Opensans';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: var(--verde);
  text-decoration: none;
}

.login__link:hover {
  color: #fff;
  text-decoration: none;
}

.login__button-container {
  position: relative;
  width: 100%;
}

.login__error-message {
  /*position: absolute; */
  font-family: 'Opensans';
  /* font-style: normal; */
  /* font-weight: 400; */
  font-size: 14px;
  /* line-height: 16px; */
  color: #e0294a;
  /* top: 2px; */
  text-align: center;
  padding-top: 10px;
}

.loading {
  position: absolute;
  right: 20px;
  top: 70px;
  display: none;
  border: 3px solid #363e4d;
  border-radius: 50%;
  border-top: 3px solid white;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 950px) {
  .loading {
    width: 25px;
    height: 25px;
    top: 78px;
    right: 10px;
  }

  .login__title {
    font-family: 'Opensans';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 20px;
  }

  .login__text {
    font-size: 14px;
    margin-bottom: 0px;
  }

  .login__link {
    font-family: 'Opensans';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
  }

  .login__error-message {
    font-size: 18px;
    line-height: 150%;
  }

  .login__logo {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .login__form-wrapper {
    /* margin-left: 10px;
        margin-right: 10px; */
    width: 90%;
    margin: 0 auto;
  }

  .login__form {
    padding: 10px;
    width: 100%;
  }

  .login__text-container {
    display: flex;
    gap: 10px;
    margin-top: 0px;
  }

  .login__error-message {
    font-size: 14px;
    line-height: 150%;
    top: 55px;
  }

  /* .login__fieldset {
        margin-bottom: 5px;
    }

    .login__input-label{
        font-size: 12px;
        margin-bottom: 2px;
    }

    .login__input {
        height: 35px;
    }

    .login__fieldset {
        gap:10px;
    }

    .password-toggle-icon {
        top: 19px !important;
    } */
}

@media screen and (max-width: 320px) {
  .login__container {
    margin-top: 25px;
    align-items: flex-start;
  }

  .login__title {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 12px;
  }

  .login__input-label {
    font-size: 14px;
  }

  .login__fieldset {
    gap: 12px;
  }

  .login__input {
    height: 30px;
  }

  .login__logo {
    position: relative;
  }

  .login__form {
    padding: 15px;
  }

  .login__text {
    margin-bottom: 0;
  }

  .login__fieldset {
    margin-bottom: 12px;
  }
}

.password-input-container {
  position: relative;
}

.password-toggle-icon {
  position: absolute;
  top: 22px;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
  font-size: 30px;
}

button:disabled,
button:hover:disabled,
button[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #fff;
  cursor: not-allowed;
}

.pageLogin {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* margin-right: -15px;
    margin-left: -15px; */
  align-items: center;
  justify-content: center;
}

.pageLogin > div {
  width: 40%;
}

@media (max-width: 700px) {
  .pageLogin {
    margin: 25px;
  }

  .pageLogin > div {
    width: 100%;
  }

  .tabela_form {
    margin-top: 20px !important;
  }
}
