body {
    background-color: #1a0045;
    font-family: 'Barlow', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  
  .login-card {
    background-color: #2e0182;
    width: 100%;
    max-width: 500px;
    border: 4px solid #fce40f;
    padding: 0;
  }
  
  .login-card .card-header {
    background-color: #fce40f;
    color: #11043C;
    font-weight: 800;
    font-size: 18px;
    padding: 16px 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }
  
  .login-card .card-body {
    padding: 32px;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 36px;
  }
  
  .form-group label {
    color: #fce40f;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
  }
  
  .form-group input.form-control {
    background: transparent;
    border: none;
    /* border-bottom: 2px solid #9a63ff; */
    /* background-color: #9a63ff; */
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    padding: 6px 0;
    width: 100%;
    outline: none;
    position: relative;
    z-index: 2;
  }
  
  .form-group input.form-control::placeholder {
    color: #bbb;
    font-weight: 400;
  }
  
  .form-group input.form-control:focus {
    box-shadow: none;
    background: transparent;
  }
  
  .form-group .form-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    overflow: hidden;
    background-color: #9a63ff;
    z-index: 1;
  }
  
  .form-group .form-underline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #fce40f;
    transition: width 0.3s ease;
  }
  
  .form-group.active .form-underline::after {
    width: 100%;
  }
  
  .btn-login {
    background-color: #fce40f;
    color: #11043C;
    border: none;
    width: 100%;
    padding: 14px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    background-color: #fff200;
    color: #000;
  }
  
  .text-center {
    margin-top: 20px;
    font-size: 14px;
  }
  
  .text-center a {
    color: #fce40f;
    font-weight: 700;
    text-decoration: none;
  }
  
  .text-center a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .alert {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 16px;
  }
  
  .fake-password {
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 26px;
  }
  

  /* MEDIA */
  
  @media (max-width: 576px) {
    body {
      display: block;
      height: auto;
    }
  
    .login-card {
      width: 100vw;
      height: 100dvh;
      max-width: 100%;
      border-radius: 0;
      border: none;
    }
  
    .login-card .card-header {
      padding: 16px;
      font-size: 16px;
      justify-content: center;
      text-align: center;
    }
  
    .login-card .card-body {
      padding: 20px 16px;
      overflow-y: auto;
      height: calc(100dvh - 60px);
    }
  
    .form-group input.form-control {
      font-size: 20px;
    }
  
    .fake-password {
      font-size: 20px;
      letter-spacing: 3px;
    }
  
    .btn-login {
      font-size: 15px;
      padding: 12px;
    }
  
    .text-center {
      font-size: 13px;
    }
  }
  
  
  .forgot-password-box {
  background-color: #1e0852;
  border: 2px solid #fce40f;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
}

.forgot-password-box a {
  color: #fce40f;
  text-decoration: underline;
}


