

body {
    margin: 0;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    color: #3b3f4a;
  }
  
  form {
    margin: 0;
    padding: 0;
    border-radius: 0px;
    background-color: white;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.26);
  }
  
  button {
	cursor: pointer;
    border-radius: 1px;
    background-color: #023864 !important;
    border: none !important;
    color: #fff !important;
    padding: 11px 35px 8px 35px !important;
    font-family: 'Sunflower', Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase !important;
    transition: background-color 300ms ease 0ms !important;
    font-size: 16px !important;
  }
  
  button:hover,
  button:active {
    background: #007eb1 !important;
    border-color: #320777;
  }
  h1{
    color: #003764;
   
  }
  .form-control {
    margin-bottom: 20px;
  }
  .form-control p {
    color: #264653;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6em !important;
    font-size: 16px;
    font-weight: 400;
  }
  .form-control input {
    font: inherit;
    border-radius: 2px;
    border: 1px solid #bbcad1;
    color: #333;
    width: 100%;
    height: 45px !important;
    padding-block: 1px;
    padding-inline: 2px;
	padding-left: 10px;
  }

  /* Default layout: side by side */
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.col-md-6 {
  flex: 1; /* Each field takes up half the width */
  width: 50%;
  max-width: 50%;
}

  /* Media query for small screens */
@media (max-width: 800px) {
  .row {
      flex-direction: column; /* Stack fields vertically */
  }

  .col-md-6 {
      width: 100%; /* Full width for each field */
      max-width: 100%;
  }
}

  .form-control input[type=checkbox] {
    font: inherit;
    padding: 0.25rem;
    border-radius: 2px;
    border: 1px solid #003764;

    width: 13px;
  }
  .form-control input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    color: #003764;
}
  .form-control input[type=time]::-webkit-calendar-picker-indicator {
      position: absolute;
      color: #003764;
  }
 
  input::-webkit-datetime-edit-fields-wrapper {
      position: relative;
    
  }
  input::-webkit-datetime-edit {
      position: relative;
      left: 30px;
  }

  fieldset{
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 5px solid #007FB3;
	margin-left: -11px;
  }
  .form-control textarea {
    font: inherit;
    padding: 0.25rem;
    border-radius: 2px;
    border: 1px solid #003764;
    color: #003764;
    display: block;
    width: 100%;
  }

  .form-control textarea:focus {
    border-color: #A7D8EF;
    outline: none;
  }
  .form-control textarea:hover {
    border-color: #A7D8EF;
    outline: none;
  }
  
  .character-counter{
	color: #3b3f4a;
    font-size: 13px;
    margin-top: 7px;
  }
  
  .selection:hover {
	border-color: #A7D8EF;
  }
  
  .select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 13px;
    color: #333;
}

.select2-results__option {
    font-size: 13px;
    color: #3b3f4a;
}

   
  .form-control select {
    font: inherit;
    padding: 0.25rem;
    border-radius: 2px;
    border: 1px solid #bbcad1;
    display: block;
    width: 100%;
    color: #3b3f4a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Prevent text from wrapping to a new line */
    height: 50px !important;
  }

  .select2-container .select2-selection--single
  {
    height: 50px !important;
  }
  .select2-container .select2-selection--single .select2-selection__rendered
  {
    color: #003764;
    border-radius: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Prevent text from wrapping to a new line */
    height: 50px !important;
    align-items: center;
    display: flex;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow
  {
    top: 25%;
  }
  

  .form-control input:focus {
    border-color: #A7D8EF;
    outline: none;
  }
  .form-control input:hover {
    border-color: #A7D8EF;
    outline: none;
  }
  
.form-control label {
    color: #3b3f4a;
    font-weight: 500;
    margin-bottom: 0;
}
  
  .errorlist {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    color: #680000;
  }
  
  .errors input {
    border-color: #680000;
    background-color: #fde3e3;
  }
  
  .errors label {
    color: #680000;
  }

  label.is-required::after {
    content: "*";
    margin-left: 3px;
	color: #ff0201;
  }
  a.button {
    font-family: sans-serif;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    background-color: #023864;
    color: white;
    border: 1.4px solid #023864;
  }
  a.button:hover { color: white; background: #007eb1 !important; }
  a.button:visited { color: white; }
  a.button:visited:hover { color: white; }
  a:hover{
    color: #013764 !important;
  }
  a {
	color: #007eb2 !important;
  }
  a:visited{
    color:#007EB2;
  }
  a:visited:hover{
    color:#003764;
  }
  
  .container { border:0px solid #ccc; width:100%; max-height: 200px; overflow-y: scroll; }
