body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Regular", "Segoe UI",
    "Open Sans", "Noto Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue" sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  background-image: url("/images/background_cloud.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  main {
    background: none;
  }
}

.background-none {
  background: none;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.signin-card {
  width: 100%;
  max-width: 480px;
  margin: 0 1rem;
}

.signin-box {
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  overflow: hidden;
  padding: 2rem;
}

.signin-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}

.signin-subtitle {
  color: #4c4c4c;
  font-size: 11px;
  margin-bottom: 30px;
  text-align: center;
}

.signin-logo {
  margin-bottom: 30px;
  text-align: center;
}

.signin-logo img {
  width: 150px;
}

.signin-btn {
  font-weight: 500;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  line-height: 20px;
}

.signin-btn img,
.signin-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

@media (max-width: 576px) {
  .signin-box {
    padding: 0.5rem;
    border: none;
    box-shadow: none;
  }

  .signin-title {
    font-size: 22px;
  }

  .signin-subtitle {
    font-size: 10px;
  }

  .signin-logo img {
    width: 120px;
  }
}

.action-text {
  font-size: 14px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.block-span {
  display: block;
}

.field-validation-valid {
  display: none;
}

.cursor-pointer {
  cursor: pointer;
  text-decoration: none;
}

a.btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.error-box {
  margin: 0 auto;
  max-width: 480px;
  padding: 40px 0;
  text-align: center;
  width: 100%;
}

.error-box h1 {
  font-size: 10em;
}

.error-box .btn {
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  min-width: 200px;
  padding: 10px 20px;
}

@media (max-width: 576px) {
  .error-box h1 {
    font-size: 7em;
  }
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #999;
  font-weight: 500;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.or-divider:not(:empty)::before {
  margin-right: 0.75em;
}

.or-divider:not(:empty)::after {
  margin-left: 0.75em;
}

.btn-microsoft {
  background-color: #2f2f2f;
  color: #fff;
  transition: background-color 0.2s;
}

.btn-microsoft:hover {
  background-color: #1f1f1f;
  color: #fff;
}

.btn-microsoft img {
  height: 20px;
  width: 20px;
}

.btn-google {
  background-color: #ffffff;
  box-shadow: inset 0 0 0 1px #747775;
  color: #1f1f1f;
  font-family: "Roboto";
  transition: background-color 0.2s;
}

.btn-google:hover {
  background-color: #f2f2f2;
  color: #1f1f1f;
}

.btn-google img {
  height: 20px;
  width: 20px;
}

.otp-input-group {
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}

.otp-input {
  max-width: 45px;
  height: 50px;
  font-size: 24px;
  text-align: center;
}

@media (max-width: 576px) {
  .otp-input-group {
    gap: 8px;
  }

  .otp-input {
    font-size: 22px;
  }
}
