.option {
    max-width: 400px;
   background: rgb(11, 114, 199);
    border-radius: 10px;
   padding: 10px;
    text-align: center;
    
  }
  .form-label {
    font-size: 1.5rem;
    margin-bottom:-3px;
    font-weight: 500;
   color:rgb(255, 255, 255) ;
   border-bottom: 1px solid white;
  }
  .form-select {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: none;
    border-bottom: 2px solid #ced4da;
    background: none;
    border-radius: 0;
    appearance: none;
    width: 100%;
    text-align-last: center;
    transition: border-color 0.3s;
    font-family: 'Anek Devanagari', sans-serif;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') no-repeat right 1rem center;
    background-size: 16px 16px;
    color: white;
  }
  .form-select option {
    text-align: center;
  }
  .form-select:focus {
    border-color:rgb(11, 114, 199);
    outline: none;
    box-shadow: none;
  }
  .form-select::-ms-expand {
    display: none;
  }
  
  
  
 