@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat:wght@500;600;700&display=swap");

html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  background: #fff;
}
/* disable chat support */
div#Embed,
#launcher {
  display: none !important;
}
main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(56rem, 90%);
}
.main-wrap.small {
  width: min(50rem, 90%);
}
.main-wrap .loader {
  position: absolute;
  content: "";
  bottom: -4.2rem;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #e8246a;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none;
}
@keyframes rotation {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
.main-wrap form {
  width: min(34rem, 100%);
  position: relative;
}
.main-wrap form input[type="text"],
.main-wrap form input[type="email"] {
  font-size: 13px;
  min-height: 40px;
  margin-bottom: 10px;
  width: 100%;
  line-height: 2.2;
  padding: 2px 12px 0;
  background: #fafafa;
  color: #000;
  border: 1px solid #8f8f8f !important;
  border-radius: 5px !important;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.5s ease;
}
.onm-cadastro-nome:hover,
.onm-cadastro-email:hover {
  border-color: #ff4d8d !important;
}
.onm-cadastro-nome:focus,
.onm-cadastro-email:focus {
  border-color: #ff4d8d !important;
  outline: 2px solid #ff4d8d !important;
}
main h1 {
  font-family: "Inter", sans-serif;
  width: min(64rem, 100%);
  font-size: clamp(20px, 1rem + 3vw, 36px);
  margin: 3rem 0 2rem;
  color: #000;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 10px;
  position: relative;
}
.main-wrap form p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 0 0 1.6rem;
}
.main-wrap form a {
  color: #3444b7;
}
.main-wrap .onm-btn {
  width: min(38rem, 100%);
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
  background: linear-gradient(100deg, #e8246a 28%, #b41055 106%);
  box-shadow: none;
  border: none;
  border-radius: 0.6rem;
  transition: all 0.2s cubic-bezier(0.55, 0.1, 0.47, 0.94) !important;
  position: relative;
}
.main-wrap .onm-btn:hover {
  color: #fff;
  background-position: 100% 0%;
  box-shadow: 0px 0px 10px #ff4c8f;
}
.main-wrap input[type="submit"] {
  -webkit-appearance: none;
}
@media screen and (max-width: 700px) {
  .main-wrap .loader {
    width: 20px;
    height: 20px;
  }
  .main-wrap form input[type="text"],
  .main-wrap form input[type="email"] {
    min-height: 34px;
  }
  .main-wrap .onm-btn {
    font-size: 1.3rem;
  }
}
