@media (max-width: 767px) {
  .login-logo {
    /* display: none; */
    width: 0;
    height: 0;
  }
  .big-font {
    font-size: 22px;
  }
  .small-font {
    font-size: 16px;
  }

  .mobile-bg {
    background-image: url("../images/orangeMobileBackground.png");
    background-repeat: no-repeat;
    background-size: 100% 110%;
  }
  .spacing {
    padding-top: 40px;
  }

  .btn-orange {
    color: #ffffff;
    background-color: #ff385c;
  }
}
@media (min-width: 768px) {
  .big-font {
    font-size: 28px;
  }
  .small-font {
    font-size: 22px;
  }
  .spacing {
    padding-top: 5px;
  }
}

#customerLoginForm h2 {
  color: #ff385c;
  text-align: center;
}

#customerLoginForm .input-control {
  display: flex;
  flex-direction: column;
}

#customerLoginForm .input-control input {
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  display: block;
  font-size: 12px;
  padding: 10px;
  width: 100%;
}

#customerLoginForm .input-control input:focus {
  outline: 0;
}

#customerLoginForm .input-control.success input {
  border-color: #09c372;
}

#customerLoginForm .input-control.error input {
  border-color: #ff3860;
}

#customerLoginForm .input-control .error {
  color: #ff3860;
  font-size: 9px;
  height: 13px;
}

#customerLoginForm button {
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  color: white;
  background-color: #ff385c;
  border: none;
  border-radius: 4px;
}

#customerLoginForm .errorMsgLogIn {
  font-size: 0.8rem;
}

@media screen and (max-width: 767px) {
  #customerLoginForm {
    margin-top: 10%;
  }
}
