header{
  background: linear-gradient(to right, #243B55, #141E30);
  background-color : rgb(31 41 55);
  border-bottom: 3px solid #bfa419;
  padding: 7px 0px
}

.navbar-toggler{
  border: 3px solid #bfa419;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
input:focus{
  box-shadow: none !important
}

#authLayout input::placeholder {
  color: white !important;
  opacity: 1;
}

a, p, span, small, strong, b, h1, h2, h3, h4, h5, h6, label, button, input, select, textarea{
  font-family: 'Red Hat Display', sans-serif !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #f7f7f7 inset !important;
  box-shadow: 0 0 0 1000px #f7f7f7 inset !important;
  -webkit-text-fill-color: #000 !important;
}


.custom-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  margin: 0;
}

.custom-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #198754; 
  border-radius: 4px;       
  transition: 0.3s;
  box-sizing: border-box;
}

.custom-checkbox label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.3s;
}

.custom-checkbox label {
  padding-left: 30px;
  line-height: 20px;
}

.custom-checkbox input[type="checkbox"]:checked ~ label::before {
  background-color: #198754;
  border-color: #198654;
}

.custom-checkbox input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}

.custom-checkbox label:hover::before {
  border-color: #198754;
}

.select-with-bg option {
  background-color: #243B55;
  padding: 5px;
  color: #fff;
}
 
input[type="date"] {
  color: #fff;
}
 
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

