  /* styles.css */
  .login-container {
      display: flex;
      justify-content: center;
  }
  html, body{
      font-family: Verdana,sans-serif;
      overflow-x: hidden;
  
  }
  .login-form {
      flex: 1;
      padding: 10px;
      border-radius: 5px;
      height: 100vh;
  }

  .login-form h1{
      text-align: center;
      text-transform: uppercase;
      font-size: 30px;
      padding-bottom: 21px;
  }

  .empty-space {
      flex: 2;
  }

  /* bootstrap5 css override */
  .container-fluid{
      margin: 0px;
      padding-left: 0px !important;
      padding-right: 0px !important;
    
  }

  .form-control{
      border-radius: 0px !important;
      border: 0px !important;
      height: 45px;
      margin: 10px 0px;
      border-bottom: 2px solid !important;
  }
  .form-control:focus{
      box-shadow: unset !important;
      border-bottom: 2px solid #198754 !important;
  }


  /*  */
  .form_container {
      width: fit-content;
      height: fit-content;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      padding: 50px 40px 20px 40px;
      background-color: #ffffff;
      box-shadow: 0px 106px 42px rgba(0, 0, 0, 0.01),
        0px 59px 36px rgba(0, 0, 0, 0.05), 0px 26px 26px rgba(0, 0, 0, 0.09),
        0px 7px 15px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
      border-radius: 11px;
      font-family: "Inter", sans-serif;
    }
    
    /* .logo_container {
      box-sizing: border-box;
      width: 80px;
      height: 80px;
      background: linear-gradient(180deg, rgba(248, 248, 248, 0) 50%, #F8F8F888 100%);
      border: 1px solid #F7F7F8;
      filter: drop-shadow(0px 0.5px 0.5px #EFEFEF) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
      border-radius: 11px;
    }
    */

    .input_container {
      width: 100%;
      height: fit-content;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    
    .icon {
      width: 20px;
      position: absolute;
      z-index: 99;
      left: 12px;
      bottom: 7px;
    }
    
    .input_label {
      font-size: 0.75rem;
      color: #8B8E98;
      font-weight: 600;
    }
    
    .input_field {
      width: auto;
      height: 40px;
      padding: 0 0 0 40px;
      border-radius: 7px;
      outline: none;
      border: 1px solid #e5e5e5;
      filter: drop-shadow(0px 1px 0px #efefef)
        drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
      transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    }
    
    .input_field:focus {
      border: 1px solid transparent;
      box-shadow: 0px 0px 0px 2px #242424;
      background-color: transparent;
    }
    
    .sign-in_btn {
      width: 100%;
      height: 40px;
      border: 0;
      background: #C99A3F;
      border-radius: 7px;
      outline: none;
      color: #ffffff;
      cursor: pointer;
    }
    
    .sign-in_ggl {
      width: 100%;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #ffffff;
      border-radius: 7px;
      outline: none;
      color: #242424;
      border: 1px solid #e5e5e5;
      filter: drop-shadow(0px 1px 0px #efefef)
        drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
      cursor: pointer;
    }
    
    .sign-in_apl {
      width: 100%;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #212121;
      border-radius: 7px;
      outline: none;
      color: #ffffff;
      border: 1px solid #e5e5e5;
      filter: drop-shadow(0px 1px 0px #efefef)
        drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
      cursor: pointer;
    }
    
    p{
      margin-bottom: 0 !important;
    }
    .p-4{
      padding: 20px !important;
    }