/*Input Number Css */
  input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }

  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }

  .number-input {
    border: 0;
    display: inline-flex;
  }

  .number-input,
  .number-input * {
    box-sizing: border-box;
  }

  .number-input button {
    outline:none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    margin: 0;
    position: relative;
    box-shadow: 0px 0px 1px #474747;
    border-radius: 50%;
  }

  .number-input button:before,
  .number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 1rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
  }
  .number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .number-input input[type=number] {
    max-width: 5rem;
    padding: .5rem !important;
    border: none !important;
    border-width: 0 2px !important;
    font-size: 2rem !important;
    height: 3rem !important;
    font-weight: bold;
    text-align: center;
    color:#9be3df !important;
    background: transparent;
  }
/*End Input Number Css */

/*Inputs text-password-emails... Css*/
  .mlogin-input {
    position: relative;
    margin: 30px 0;
    display: grid;
  }

  .mlogin-input label {
      position: absolute;
      top: 50%;
      left: 5px;
      transform: translateY(-50%);
      font-size: 16px;
      color: #333;
      padding: 0 5px;
      pointer-events: none;
      transition: .5s;
  }

  .mlogin-input input {
      /*width: 320px;*/
      width: 100%;
      height: 40px;
      font-size: 16px;
      color: #333;
      padding: 0 10px;
      background: transparent;
      border: 1px solid #333;
      outline: none;
      border-radius: 5px;
      transition: .5s;
  }

  .mlogin-input input:focus~label,
  .mlogin-input input:valid~label {
      top: 0;
      font-size: 12px;
      background: #fff;
      color: #be2edd;
  }

  .mlogin-input input:focus,
  .mlogin-input input:valid {
      border: 1px solid #be2edd;
  }

  .remember {
      margin: -15px 0 15px;
  }

  .remember label {
      color: #333;
      font-size: 14px;
  }

  .remember label input {
      accent-color: #be2edd;
  }

  .sign-link {
      font-size: 14px;
      text-align: center;
      margin: 25px 0;
  }

  .sign-link p {
      color: #333;
  }

  .sign-link p a {
      color: #be2edd;
      text-decoration: none;
      font-weight: 600;
  }

  .sign-link p a:hover {
      text-decoration: underline;
  }
/*End Inputs Css*/

/* BTNs CSS */
.confirm-btn {
  background: #a92b2b;
  color: #fff;
  float: right;
  font-weight: 600;
  width: 50%;
  font-size: 14px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  position: relative;
  left: 15px;
}

.cancel-btn {
  background: #e6e8df;
  color: #090909;
  float: left;
  font-weight: 600;
  width: 50%;
  font-size: 14px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}

@media screen and (max-width: 300px) {
  .confirm-btn {
    width: 100%;
  }
  .cancel-btn {
    width: 100%;
  }
}
/* End BTNs CSS */

/* Input Eye */
.field-icon {
  position: relative;
  float: right;
  margin-left: 190px;
  margin-top: -27px;
}
/* End Eye */