body {
  font-family: lato,sans-serif;
  }
  .none{
    display: none;
  }

  .invalid-feedback-system{
    color: #e2001a;
    font-style: italic;
  }
  .invalid-feedback-connexion{
    color: #e2001a;
    font-style: italic;
  }

  .header {
  background-color:#e2001a;
  }
  
  .title {
  font-family: montserrat,sans-serif;
  font-size: calc(16px + (28) * ((100vw - 300px) / (1620)));
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  color:white;
  margin: 0 auto;
  padding: 1vw;
  }
  
  .appsImg {
  display:flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 3vw calc(10px + (440) * ((100vw - 300px) / (1620)));
  }
  
  .appsImg img {
  width: calc(35px + (95) * ((100vw - 300px) / (1620)));
  }
  
  form {
  padding: 0 calc(10px + (440) * ((100vw - 300px) / (1620)));
  margin: 0 auto;
  }
  
  
  .form-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .form-group{
    padding-left: 12px;
    display: flex;
    flex-wrap: wrap;
    margin-top:10px;
    margin-bottom:15px;
  }
  
  textarea {
  vertical-align: top;
  }
  
  .field {
  font-family: lato,sans-serif;
  border: 0;
  border: 0.1rem solid #b3b3b3;
  width: 100%;
  font-size: 16px;
  line-height:1.5em;
    margin: 10px;
    border-radius:4px;
    padding: 3px;
  }
  
  input:-internal-autofill-selected {
  background: #e6e6e6!important;
  }
  
  #submitButton {
  font-family: montserrat,sans-serif;
  font-size: calc(14px + (12) * ((100vw - 300px) / (1620)));
  background-color: #e2001a;
  color: white;
  border: none;
  width : auto;
  }
 
  .feedback {
    padding: 2vw;
    font-size: calc(14px + (12) * ((100vw - 300px) / (1620)));
    display: flex;
    margin: auto;
    text-align: center;
    justify-content: center;
  }

.button {
  position: relative;
  padding: 8px 16px;
  background: #e2001a;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  margin: auto;
  display: flex;
  margin-bottom: 30px;
}

.button:active {
  background: #e2001a;
}

.button__text {
  font-size:  20px;
  color: #ffffff;
  transition: all 0.2s;
}

.button--loading .button__text {
  visibility: hidden;
  opacity: 0;
}

.button--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.good{
  color: green;
  border: solid 5px #0080005e;
  background: #0080001c;
  padding: 1rem;
  border-radius: 20px;
}

.nope{
  color: red;
  border: solid 5px #8000005e;
  background: #8000001c;
  padding: 1rem;
  border-radius: 20px;
}

.field-android {
  margin-left: 10px;
  width: 77px;
  position: relative;
  border: 0.1rem solid #b3b3b3;
  border-radius: 4px;
}

.field-ios{
  margin-left: 10px;
  width: 77px;
  position: relative;
  left: 31px;
  border: 0.1rem solid #b3b3b3;
  border-radius: 4px;
}

.disabled{
  pointer-events: none;
  background: #dddddd;;
  border: 0.1rem solid #b3b3b3;
  border-radius: 4px;
}