main {
  width: 100vw;
  height: 100vh;
  display: flex;
  background: white;
}

.formContainer {
  margin: auto;
  width: 90%;
  max-width: 350px;
}

  .formContainer form {
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
  }

    .formContainer form .input {
      display: flex;
      width: 100%;
      grid-gap: 10px;
      align-items: center;
      justify-content: center;
      border: 2px solid #4289BB;
      height: 44px;
      border-radius: 15px;
      font-size: 16px;
    }


    .formContainer form input {
      outline: none;
      background: none;
      border: none;
      width: 100%;
    }

    .formContainer form i {
      font-size: 20px;
      color: #4289BB;
      padding-left: 10px;
    }


.containerCheckbox input {
  display: none;
}

.buttonContainer {
  background: #4289BB;
  border-radius: 15px;
  height: 44px;
  border: none;
  font-weight: bold;
  color: white;
  font-size: 16px;
  width: 90%;
  align-self: center;
  transition: 0.3s;
}

.buttonOutline {
  background: none;
  color: #4289BB;
  border: 2px solid #4289BB;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.buttonContainer:hover {
  transform: scale(0.95)
}

.buttonContainer:active {
  transform: scale(1)
}

a {
  text-align: center;
  color: #4289BB;
  font-weight: 500;
}

.logoMini {
  display: flex;
  justify-content: center;
}

.header {
  font-size: 20px;
  color: #074978;
  font-weight: 700;
  text-align: center;
  width: 80%;
  align-self: center;
}

.checkbox label {
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  color: #666666;
  font-weight: 500;
}

.decorationContainer {
  display: none;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  background: red !important;
  font-size: 100px !important;
}

@media (min-width: 900px) {
  .decorationContainer {
    display: initial;
    width: 50%;
    background: #074978;
    position: relative;
  }

  .vetor {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .logoChi {
    position: absolute;
    position: absolute;
    bottom: 50px;
    width: 30%;
    max-width: 150px;
    left: 40px;
  }

  .logoModall {
    position: absolute;
    right: 40px;
    bottom: 50px;
    width: 50%;
    max-width: 280px;
  }

  .logoModallWeb {
    width: 40%;
    max-width: 411px;
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translateX(50%);
  }


  main {
    display: flex;
  }
}
