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

:root {
  font-size: 10px;
}

.auth {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.auth__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background-color: #316EAE;
}
.auth__background svg {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.auth__heading {
  font-size: 3rem;
  color: #000;
  text-align: center;
  margin-top: -1.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.auth__form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 3px #F5F5F7;
  width: 95%;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 3;
}
.auth__logo {
  width: 100px;
}
.auth__group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.auth__group--remember {
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-direction: row;
  font-size: 1.6rem;
}
.auth__group--remember label {
  font-size: 1.6rem;
}
.auth__dual-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}
.auth__dual-group > div {
  flex: 1 1 50%;
}
.auth__label {
  font-size: 1.4rem;
  color: #888;
}
.auth__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #F5F5F7;
  border-radius: 1rem;
  font-size: 1.6rem;
}
.auth__input:avtive {
  outline-color: #316EAE;
}
.auth__button {
  width: 100%;
  padding: 1rem;
  border: 2px solid #F5F5F7;
  border-radius: 1rem;
  background-color: #316EAE;
  color: #fff;
  font-size: 1.6rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.auth__button:hover {
  background-color: #265586;
}
.auth__text {
  font-size: 1.6rem;
  color: #888;
  text-align: center;
}
.auth__link {
  text-decoration: none;
  color: #316EAE;
  transition: 0.3s ease-in-out;
  font-size: 1.6rem;
}
.auth__link:hover {
  color: #265586;
}
.auth__links {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding-top: inherit;
}

@media (min-width: 1024px) {
  .auth__button {
    font-size: 1.8rem;
  }
}
.iti.iti--allow-dropdown {
  width: 100% !important;
}
