@import 'Utils/Theme';
@import 'Utils/Colors';

body {
  font-family: 'Acherus Grotesque', Roboto, sans-serif;
  box-sizing: border-box;
  font-size: 16px;
}

input, select:focus, textarea {
  font-size: 16px !important;
}

.container {
  padding: 10px 20px 20px 20px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 700px;
  min-width: 300px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
}

.logo {
  visibility: hidden;
  height: 0px;
}

.form-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.card-heading {
  color: #CB102E;
}

.field-line, .button-line {
  padding: 16px;
}

.error-message {
  padding: 0 16px;
  color: #ff0000;
  min-height: 20px;
  font-size: 14px;
}

.no-margin {
  margin: 0px;
}

.success-message {
  padding: 0 16px;
  color: green;
}
.input-text {
  padding-top: 10px;
  margin: 5px 0;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
  color: rgb(140, 141, 142);
  outline: none;
  border-bottom: 1px rgb(140, 141, 142) solid;
}

.submit-button {
  background-color: #CB102E;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
  height: 36px;
  width: 88px;
  font-size: 16px;
  border-radius: 4px;
  margin: 5px;
}

/* TABLET MEDIA QUERY */
/* Portrait */
@media screen and (min-width: 813px) and (max-device-width: 1024px) {
  body {
    max-width: 100vw;
    overflow: hidden;
    /*background-color: #095A95;*/
  }

  .container {
    margin: 0;
    width: inherit;
    min-width: 200px;
    max-width: 100%;
    box-shadow: none;
  }

  .logo {
    visibility: visible;
    height: 30%;
    width: 30%;
  }

  .card-heading {
    color: #000000;
    font-size: 22px;
    font-weight: bolder;
    letter-spacing: 1px;
  }

  .form-box {
    width: 100%;
    align-items: center;
    font-size: 16px;
    font-weight: lighter;
    color: #000000;
  }

  .input-text {
    width: 50%;
    height: 50px;
    font-size: 16px;
  }

  .submit-button {
    background-color: #CB102E !important;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    width: 50%;
    height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    border: none;
    -webkit-appearance: none;
  }

  .submit-button > input[type='submit'] {
    background-color: #CB102E !important;
  }
}

/* MOBILE MEDIA QUERY */
/* Portrait */
@media screen and (min-width: 320px) and (max-device-width: 812px) {
  body {
    max-width: 100vw;
    overflow: hidden;
    /*background-color: #095A95;*/
  }

  .container {
    margin: 0;
    width: inherit;
    min-width: 200px;
    max-width: 100%;
    box-shadow: none;
  }

  .logo {
    visibility: visible;
    height: 30%;
    width: 30%;
  }

  .card-heading {
    color: #000000;
    font-size: 22px;
    font-weight: bolder;
    letter-spacing: 1px;
  }

  .form-box {
    width: 100%;
    align-items: flex-start;
    font-size: 16px;
    font-weight: lighter;
    color: #000000;
  }

  .input-text {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }

  .submit-button {
    background-color: #CB102E !important;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    width: 100%;
    height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    border: none;
    -webkit-appearance: none;
  }

  .submit-button > input[type='submit'] {
    background-color: #CB102E !important;
  }
}
