form{
  input, select, textarea{
    padding-left: 10px;

    color: $theme-default;
    font-weight: 400;
    padding: 15px;
    font-family: $sub-heading-font-family;
    border: 0px solid rgba(59, 58, 58, 1);
    box-shadow: none;
    font-size: $base-font-size;
    -webkit-appearance: none;
    border-radius: 1px;  
    // border: none;
    width: 100%;

  }
&.checkout, .login, .register{
   input[type=text], input[type=number], input[type=email], input[type=tel], select, textarea{
    background-color: white;
  }
}
  input[type=text]{
    text-transform: capitalize;
  }
 
  input[type=text], input[type=number], input[type=email], input[type=tel], select, textarea{
      background-color: white;
    width: 100%;
    margin: 10px 0;
    border-radius: 4px;
    margin-bottom: 10px;
    max-height: 100px;

    &::placeholder{
        color:$theme-grey;
    }
  }
  textarea{
    height: 120px;
  }

  input[type=submit]{
    background: $theme-secondary;
    padding: 15px;
    max-width: 170px;
    display: inline-block;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius:4px;
    font-weight: 700;
    font-size: 16px;
    font-family: $font-special;
    color: $theme-white;
    margin: 20px auto;
    min-width: 70px;
    border: none;
    @include transition(0.3s);
    // float: right;
    // width: 10%;

    &:hover{
      background: $theme-white;
      color: $theme-secondary;
    }

  }

}
body{
  &.checkout{
      form{
        input{
          background-color: white !important;
        }
      }
  }
}
