@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,700;0,900;1,300;1,500;1,700;1,900&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
}

.chosen-container {
  height: 30px;
  width: 95% !important;
}

.content .chosen-container a {
  margin-top: 0;
}

.content {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  position: relative;
  width: 50vw;
}

.content .header {
  width: 300px;
}

.content h2 {
  font-size: 28px;
  font-weight: 500;
  color: #707070;
  margin: 50px 0 20px 0;
  text-align: center;
}

.content input {
  margin: 5px 0;
  width: 95%;
  height: 30px;
  padding-left: 10px;
}

.content button {
  background-color: #f9104e;
  border-radius: 40px;
  color: white;
  margin: 34px 0;
  padding: 12px 125px;
  font-size: 20px;
  font-weight: bold;
  border: none;
}

.content button:hover {
  background-color: #c70c3e;
  cursor: pointer;
}

.content button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.content a {
  margin-top: 20px;
  color: #707070;
  font-size: 18px;
  text-align: center;
}

.footer {
  position: absolute;
  bottom: 5vh;
  color: #707070;
  font-size: 12px;
  text-align: center;
}

.footer a {
  font-size: 12px;
}

.img-footer {
  bottom: 1.5vh;
  height: min(3vh, 40px);
  position: absolute;
}

.input-container {
  position: relative;
}

.input-container i {
  position: absolute;
  top: 15px;
  right: 15px;
}

.input-with-label {
  width: 100%;
}

.input-with-label input {
  height: 30px;
  margin: 0;
  padding-left: 10px;
  width: 100%;
}

.input-with-label label {
  margin-bottom: 0;
  margin-top: 15px
}

form {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.error-container {
  color: #e01652;
  display: flex;
}

.success-container {
  color: #214f78;
  display: flex;
}

.hide {
  display: none;
}

label.required:after {
  content: '*';
}

@media all and (max-width: 768px) {
  .content {
    width: 95vw;
  }

  .content a {
    margin-top: 0;
    font-size: min(1rem, 2vh);
  }

  .content button {
    margin: 5vh 0;
    padding: 12px 0;
  }

  .content h2 {
    font-size: 3vh;
    margin: 5vh 0 2vh;
  }

  .content .header {
    width: 80vw;
  }

  form {
    width: 80%;
  }

  .footer, .footer a {
    font-size: min(.7rem, 2vh);
  }
}
