body {
  font-family: "Inter", sans-serif;
  background-color: #f4f9ff;
  margin: 0 !important;
}
/* ---------- LOGO ---------- */
.logo {
  margin-top: 30px;
  margin-left: 60px;
}

.logo img {
  width: 180px;
}
input,
button {
  box-sizing: border-box;
}
input::placeholder {
  color: #a9a9bc;
  font-size: 16px;
}

.or-divider {
  position: relative;
  text-align: center;
  margin: 2.1rem 0;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #a9a9bc;
  /* light gray border */
  width: calc(50% - 25px);
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

.or-divider span {
  color: #6c6c89;
  /* medium gray text */
  font-size: 12px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input.error {
  border: 1px solid #f53d6b !important;
}

.help-block.error,
.help-block.error a {
  color: #d50b3e !important;
  margin-bottom: 0px;
  margin-top: 5px;
  box-sizing: border-box;
  font-size: 14px;
}

.help-block.error a {
  text-decoration: underline;
}
input:focus {
  outline: none;
  border-color: #1a73e8 !important;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}
.form-container {
  width: 494px;
  padding-left: 10px;
  padding-right: 10px;
}
.alert-success {
  border: none !important;
  border-left: 2px solid #ffc233 !important;
  background-color: #fff9eb !important;
  color: #8a6100;
  box-shadow: 0px 4px 6px -1px rgba(18, 18, 23, 0.08),
    0px 2px 4px -1px rgba(18, 18, 23, 0.06);
  border-radius: 0px 8px 8px 0px;
  font-size: 14px;
  gap: 15px;
}

@media (max-width: 950px) {
  .logo {
    margin-top: 15px;
    margin-left: 20px;
  }
  .form-container {
    width: 100% !important;
  }
}
