body{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background-color: #f0ebf8;
  }
  .custom-form-control-container{
    position: relative;
    padding: 1rem 0.5rem;
    background: #EEEEEE;
    border-radius: 15px;
  }
  .custom-form-control{
    border: 0;
    background: #fff0;
    border-bottom: 2px solid #000;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
  }
  .custom-form-control::placeholder{
    font-style: italic;
  }
  .custom-form-control:focus{
    border-bottom: 2px solid #0d6efd;
  }
  .time-picker .btn{
    font-size: 13px;
  }
  .time-picker .custom-form-control{
    width: 25px;
    text-align: center;
  }
  .time-picker input::-webkit-outer-spin-button,
  .time-picker input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
  .time-picker input[type=number] {
      -moz-appearance:textfield;
  }
  .text-blue{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;

    background: linear-gradient(180deg, #2E7897 0%, #4AB4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    opacity: 0.8;
  }
  .text-danger:empty{
    display: none;
  }