@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');

* {
	box-sizing: border-box;
}

.success-input {
	border: none;
}

@media only screen and (max-width: 1300px) {
  .success-input {
    border: none;
  }
}

.error-input {
	border: 2px solid #e74c3c;
}

@media only screen and (max-width: 1300px) {
  .error-input {
    border: 2px solid #e74c3c;
  }
}

.error-feedback {
  display: none;
  height: auto;
	color: #e74c3c;
  margin-left: 10px;
  font-weight: bold;
  font-size: 0.85rem;
}

.input-outerWrapper{
  display: inline-block;
  width: 100%;
}

.show-feedback{
  display: inline-block;
}