.ti-auth-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -200%);
  transition: all 0.3s ease;
  opacity: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
  z-index: 99;
}
.ti-auth-modal.active {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.ti-auth-modal .ti-auth-dialog {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  height: -moz-fit-content;
  height: fit-content;
  width: 30rem;
  max-width: 100%;
  position: relative;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.ti-auth-modal .ti-auth-dialog > button {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog > button {
    top: 0.5rem;
    right: 1rem;
  }
}
.ti-auth-modal .ti-auth-dialog section {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 1rem 0 0 0;
  width: 100%;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section {
    padding: 0.5rem 0 0 0;
    gap: 0.5rem;
  }
}
.ti-auth-modal .ti-auth-dialog section[hidden] {
  display: none;
}
.ti-auth-modal .ti-auth-dialog section > h2 {
  font-size: 1.875rem;
  font-family: "Exo", sans-serif;
  font-style: italic;
  text-align: center;
  color: #1f9ad7;
  font-weight: bold;
}
.ti-auth-modal .ti-auth-dialog section > p {
  text-align: center;
  font-weight: normal;
}
.ti-auth-modal .ti-auth-dialog section form {
  position: relative;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section form {
    gap: 0.5rem;
  }
}
.ti-auth-modal .ti-auth-dialog section form .tabsRegister button.active {
  font-weight: bold;
  color: #1f9ad7;
}
.ti-auth-modal .ti-auth-dialog section form > label {
  display: flex;
  width: 100%;
}
.ti-auth-modal .ti-auth-dialog section form > label select,
.ti-auth-modal .ti-auth-dialog section form > label input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d5ecf7;
  background-color: #e9f5fb;
  border-radius: 3rem;
  outline: none !important;
}
.ti-auth-modal .ti-auth-dialog section form > label select::-moz-placeholder, .ti-auth-modal .ti-auth-dialog section form > label input::-moz-placeholder {
  color: #6678a1;
  font-size: 0.938rem;
}
.ti-auth-modal .ti-auth-dialog section form > label select::placeholder,
.ti-auth-modal .ti-auth-dialog section form > label input::placeholder {
  color: #6678a1;
  font-size: 0.938rem;
}
.ti-auth-modal .ti-auth-dialog section form fieldset {
  border: none;
}
.ti-auth-modal .ti-auth-dialog section form fieldset .ti-check {
  position: relative;
}
.ti-auth-modal .ti-auth-dialog section form fieldset .ti-check::before {
  position: relative;
  content: "";
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #6678a1;
}
.ti-auth-modal .ti-auth-dialog section form fieldset .ti-check input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.ti-auth-modal .ti-auth-dialog section form fieldset .ti-check span a {
  text-decoration: underline;
  color: #15253f;
}
.ti-auth-modal .ti-auth-dialog section form fieldset .ti-check:has(input:checked)::before {
  background: #6678a1;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit] {
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit] span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit] span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit] svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form > button[type=submit] svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section form > button[type=submit] {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section form .tab-container {
    gap: 0.5rem;
  }
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > label {
  display: flex;
  width: 100%;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > label select,
.ti-auth-modal .ti-auth-dialog section form .tab-container > label input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d5ecf7;
  background-color: #e9f5fb;
  border-radius: 3rem;
  outline: none !important;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > label select::-moz-placeholder, .ti-auth-modal .ti-auth-dialog section form .tab-container > label input::-moz-placeholder {
  color: #6678a1;
  font-size: 0.938rem;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > label select::placeholder,
.ti-auth-modal .ti-auth-dialog section form .tab-container > label input::placeholder {
  color: #6678a1;
  font-size: 0.938rem;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset {
  border: none;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset .ti-check {
  position: relative;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset .ti-check::before {
  position: relative;
  content: "";
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #6678a1;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset .ti-check input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset .ti-check span a {
  text-decoration: underline;
  color: #15253f;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container fieldset .ti-check:has(input:checked)::before {
  background: #6678a1;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button {
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container > button svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section form .tab-container > button {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button {
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
.ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .ti-auth-modal .ti-auth-dialog section form .tab-container .buttons > button {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
.ti-auth-modal .ti-auth-dialog section form .ti-auth-switch {
  font-size: 1.125rem;
}
.ti-auth-modal .ti-auth-dialog section form .ti-auth-switch button {
  color: #15253f;
  font-size: 1.125rem;
  font-weight: normal;
}
.ti-auth-modal .ti-auth-dialog section form .ti-auth-back a {
  color: #15253f;
  font-size: 1.125rem;
  font-weight: normal;
}/*# sourceMappingURL=index.css.map */