/* 

<div class="checkbox-wrapper-18">
  <div class="round">
    <input type="checkbox" id="checkbox-18" />
    <label for="checkbox-18"></label>
  </div>
</div>


  .checkbox-wrapper-18 .round {
    position: relative;
  }

  .checkbox-wrapper-18 .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    width: 28px;
    display: block;
  }

  .checkbox-wrapper-18 .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 8px;
    opacity: 0;
    position: absolute;
    top: 9px;
    transform: rotate(-45deg);
    width: 12px;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
    background-color: #66bb6a;
    border-color: #66bb6a;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  } */
/* Style for the input field */
input {
  /* background-color: lightblue; */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style for the autofill state in WebKit browsers */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset; /* Set the background color for autofill state */
}
/* Style for the dropdown menu */
/* Style for the dropdown menu */
input:hover {
  border-color: rgba(10, 10, 10, 0.83);
}

input:focus,
input:active {
  box-shadow: 0 0 8px rgba(9, 9, 9, 0.882);
  /* -webkit-box-border: none; */
  outline: none;
  border: none;
}