:root {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #10283d;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #eef4f7;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(440px, 0.95fr);
}
.auth-marca {
  position: absolute;
  left: 34px;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #fff;
}
.auth-marca i {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: #0b2945;
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 16px;
}
.auth-visual {
  position: relative;
  background: linear-gradient(145deg, #0b2945, #0b5472);
  overflow: hidden;
  padding: 110px 8vw 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-visual:before,
.auth-visual:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.auth-visual:before {
  width: 620px;
  height: 620px;
  right: -330px;
  top: -260px;
}
.auth-visual:after {
  width: 390px;
  height: 390px;
  left: -240px;
  bottom: -190px;
}
.auth-visual p:first-child {
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #8ad7df;
}
.auth-visual h1 {
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 10px 0 18px;
  max-width: 560px;
}
.auth-visual > p:last-child {
  color: #bdd1de;
  font-size: 15px;
  max-width: 480px;
}
.auth-pontos {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}
.auth-pontos span {
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}
.auth-pontos span:first-child {
  background: #63cbd3;
}
.auth-forma {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px;
}
.auth-box {
  width: 100%;
  max-width: 390px;
}
.auth-box .mini {
  font-size: 11px;
  color: #36718f;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.auth-box h2 {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin: 9px 0 6px;
}
.auth-box .sub {
  margin: 0 0 28px;
  color: #6a7f90;
}
.auth-box label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 15px;
}
.auth-box input {
  width: 100%;
  height: 50px;
  border: 1px solid #cbd9e3;
  border-radius: 12px;
  margin-top: 7px;
  padding: 0 14px;
  font-size: 15px;
  outline: 0;
}
.auth-box input:focus {
  border-color: #1687c5;
  box-shadow: 0 0 0 3px rgba(22, 135, 197, 0.11);
}
.senha-wrap {
  position: relative;
}
.senha-wrap input {
  padding-right: 55px;
}
.ver {
  position: absolute;
  right: 8px;
  bottom: 8px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #32718f;
  font-size: 11px;
  font-weight: 800;
}
.auth-box button[type="submit"] {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #087dc1, #096ca7);
  color: #fff;
  font-weight: 750;
  margin-top: 22px;
}
.auth-box button:disabled {
  opacity: 0.6;
}
.mensagem {
  padding: 11px 12px;
  border-radius: 10px;
  background: #fff1f1;
  color: #ad3535;
  font-size: 12px;
  margin-top: 13px;
}
.mensagem.ok {
  background: #effaf5;
  color: #08764a;
}
.escondido {
  display: none !important;
}
.alternativa {
  text-align: center;
  margin-top: 20px;
  color: #718596;
  font-size: 12px;
}
.alternativa a {
  color: #0876b3;
  font-weight: 750;
  text-decoration: none;
}
.legal {
  text-align: center;
  margin-top: 30px;
  color: #9aacb9;
  font-size: 10px;
}
@media (max-width: 820px) {
  body {
    display: block;
    background: #fff;
  }
  .auth-visual {
    display: none;
  }
  .auth-marca {
    position: static;
    padding: 20px 22px;
    color: #10283d;
  }
  .auth-forma {
    min-height: calc(100vh - 76px);
    align-items: flex-start;
    padding: 34px 24px 50px;
  }
  .auth-box {
    max-width: 430px;
  }
  .auth-box h2 {
    font-size: 31px;
  }
}
