/* inside this file, there are reset css for elements e.g input, select
and these styles are global */

:root {
  --light-grey: #e7e7e7;
  --light-grey-two: #aeaeae;
  --black: #000;
  --black-one: #818586;
  --black-two: #081f24;
  --white: #fff;
}

input,
select {
  border: 1px solid var(--light-grey) !important;
  height: 40px;
  border-radius: 8px !important;
  box-shadow: 0px 2px 2px -1px #0000000a;
}

select.form-control-select {
  margin: 12px 0;
}

input::placeholder {
  color: var(--light-grey-two) !important;
  font-weight: 400;
}

input:focus,
select:focus {
  box-shadow: 0 0 0 0.05rem rgb(245 141 12 / 71%) !important;
}

/* button */
button {
  border: none;
  background: var(--black-two);
  color: var(--white);
  height: 40px;
  border-radius: 8px;
  font-weight: 500;
  width: 100%;
  border-radius: 8px !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

button:disabled {
  background: #eceded !important;
  cursor: not-allowed;
  color: var(--black-one) !important;
}

button.secondary {
  background: none;
  color: #ff8d06;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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