/* Custom Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #475580;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #021758;
  }
  /* Custom Scrollbar */
  
  :root {
    --input-padding-x: 1.5rem;
    --input-padding-y: 0.75rem;
  }
  
  .card-signin {
    border: 0;
    border-radius: 1rem;
    /* box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1); */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  input:focus,
  select:focus,
  button:focus {
    outline: none;
  }
  
  /* Change the white to any color ;) */
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
  }
  
  .card-signin .card-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #00AAFE;
    font-weight: 600;
  }
  
  .card-signin .card-body {
    padding: 2rem;
  }
  
  /* Input focus */
  .form-control:focus {
    box-shadow: none;
    border: 2px solid #00AAFE !important;
  }
  
  
  .form-signin {
    width: 100%;
  }
  
  .form-signin .btn {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 1rem;
    transition: all 0.2s;
  }
  
  button:focus {
    outline: none;
  }
  
  
  .form-label-group {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .form-label-group input {
    height: auto;
    border-radius: 2rem;
  }
  
  .form-label-group > input,
  .form-label-group > label {
    padding: var(--input-padding-y) var(--input-padding-x);
  }
  
  .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: all 0.1s ease-in-out;
  }
  
  .form-label-group input::-webkit-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input::placeholder {
    color: transparent;
  }
  
  .form-label-group input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
  }
  
  .form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #777;
  }
  
  /* Fallback for Edge
  -------------------------------------------------- */
  @supports (-ms-ime-align: auto) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input::-ms-input-placeholder {
      color: #777;
    }
  }
  
  /* Fallback for IE
      -------------------------------------------------- */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input:-ms-input-placeholder {
      color: #777;
    }
  }
  
  /* Signup btn */
  
  .btn {
    background-color: #00AAFE;
    color: white;
    margin-top: 30px;
    width: 40%;
  }
  
  .btn:hover {
    background-color: #021758;
    color: white;
  }
  
  /* Footer */
  
  footer {
    width: 100%;
    text-align: center;
    height: 80px;
    background-color: #ececec;
  }
  
  .dropdown .dropdown-menu a:hover {
    color: #fff;
    background-color: #00AAFE;
    border-color: #fff;
  }
  
  /* Modal btn */
  #modal-btn {
    padding: 5px;
    border-radius: 10px;
    width: 100%;
    height: 47px;
    background-color: white;
    color: black;
    margin-top: 10px;
    border: 2px solid #00AAFE;
    box-shadow: none;
  }
  
  #modal-btn:focus {
    box-shadow: none;
    border: 2px solid #00AAFE;
  }
  
 