:root {
    --primary: #f66;
    --primary-dark: #b3b3b3;
}

 .button__orange {
    color: white !important;
    background-color: var(--primary);
    border: 0px solid #FF7C06 !important;
    /* box-shadow: 0 6px 12px 0 rgba(255, 124, 6, 0.4980392157) !important; */
    box-shadow: 0 6px 12px 0 rgb(255 6 6 / 50%) !important;
    padding: 5px 14px;
    /* border-radius: 10px; */
    font-size: 14px;
    min-width: 175px;
    min-height: 49px;
}

.button__orange:hover {
  background-color: var(--primary-dark)!important;
}

.pointer {cursor: pointer;}

.formback{
   background-color: antiquewhite;
}

.form-control {
   border: 1px solid #ffc107;
   /* background-color: #ffc107; */
   background-color: #fff;
}

input[type=text]:focus {
  /*border: 3px solid #FF7C06; */
  /* box-shadow:0 6px 12px 0 rgba(255, 124, 6, 0.4980392157);*/
  box: 1px solid #FF7C06!important;
  box-shadow: 0px 0px 5px #FF7C06;
  /* border: 1px solid #FF7C06;*/
}

input[type=password]:focus {
  box: 1px solid #FF7C06!important;
  box-shadow: 0px 0px 5px #FF7C06;
}

input[type=text]:-internal-autofill-selected {
   background-color: #ffc107!important;
}