body {
  margin: 0px;
  height: 100vh;
}

.loginContainer {
  color: #ffffff;
  height: 100%;
  display: flex;
  font-style: normal;
  font-family: '-apple-system',
  'BlinkMacSystemFont',
  '"Segoe UI"',
  'Roboto',
  '"Helvetica Neue"',
  'Arial',
  'sans-serif',
  '"Apple Color Emoji"',
  '"Segoe UI Emoji"',
  '"Segoe UI Symbol"';
  font-weight: 300;
  line-height: normal;
  font-stretch: normal;
  letter-spacing: 0px;
}

.contentBox {
  width: 60%;
  height: 100%;
  /* min-height: 800px; */
  padding: 40px;
  background-size: cover;
  background-image: url(/public/assets/img/background/background-login.png);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.formBox {
  width: 40%;
  padding: 40px;
  display: flex;
  align-items: center;
  height: 100%;
  /* min-height: 800px; */
}

.logo {
  display: flex;
  align-items: center;
  height: 22px;
  margin-bottom: 30px;
  color: black;
}

.logoStyle {
  margin-right: 10px;
  height: auto;
  width: 100%;
  max-width: 127px;
}

.formBox .logo {
  display: none;
}

.centerContentContainer {
  height: calc(100% - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.centerContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.macbook {
  width: auto;
  height: auto;
  max-width: 50vw;
  max-height: 40vh;
  margin-bottom: 30px;
}

.content {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 2.5vw;
}

.subTitle {
  margin: 16px 0px;
  font-size: 1.5vw;
  font-weight: bold;
}

.message {
  font-size: 1vw;
  font-weight: 600;
}

.info {
  width: 100%;
  font-size: 1.4vw;
  margin: 20px 0px;
  color: #353535;
}

#errorMessage {
  text-align: center;
}

.formContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.formTitle {
  color: #555555;
  padding: 20px 0px;
  font-size: 2.5vw;
  font-weight: 500;
}

.inputContainer {
  width: 100%;
  margin-bottom: 15px;
}

.inputContainer label {
  color: #000000;
  font-weight: normal;
}

.inputContainerHidden {
  width: 100%;
  margin-bottom: 15px;
  visibility: hidden;
  display: none;
}

.inputStyle {
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 8px;
  height: auto;
}

.submitButton {
  min-height: 42px;
  min-width: 100px;
  max-width: 100%;
  background-color: #2196f3;
  color: #ffffff;
  letter-spacing: 0.5px;
  padding: 7px 8px;
  margin: 16px 32px 32px 32px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.submitButton:hover {
  background-color: #01408F;
  color: white;
}

a:not([href]):not([tabindex]) {
  color: #1f96f3;
  text-decoration: none;
}

.form a {
  color: #555555;
  text-decoration: underline;
}

.form-control:focus {
  outline: none;
  box-shadow: none !important;
}

.error {
  color: red;
  margin: 0px;
}

.success {
  color: green;
  margin: 0px;
}

.passwordInfoMessage {
  color: rgba(0, 0, 0, 0.54);
  margin: 20px 0px;
}

.helperText {
  width: 100%;
  font-size: 1.2vw;
}

.helperRecaptcha {
  margin-top: 16px;
}

@media only screen and (max-width: 600px) {
  .contentBox {
    display: none;
  }
  .formBox {
    width: 100%;
    flex-direction: column;
    align-items: unset;
  }
  .formBox .logo {
    height: 22px;
    display: flex;
    margin-bottom: 0px;
  }
  .formContainer {
    height: calc(100vh - 22px);
    display: flex;
  }
  .formTitle {
    font-size: 30px;
  }
  .inputStyle {
    font-size: 18px;
  }
  .info {
    font-size: 18px;
  }
  .helperText {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .formTitle {
    font-size: 30px;
  }
  .info {
    font-size: 17px;
  }
  .helperText {
    font-size: 14px;
  }
}
