  body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #d5f3df;
    font-family: 'Arial', sans-serif;
  }

  .header {
    background-color: #004d40 !important;
  }

  .header img{
    width: 50px;
    height: 50px;
  }

  header .text-danger {
    font-size: 24px;
  }

  .input{
    background-color: #c0e0d5;
  }

  header a {
    font-size: 14px;
  }

  header img{
    width: 50px;
    height: 50px;
  }

  /* Login Section */
  .main{
    margin-top: 120px;
    margin-bottom: 30px;
  }
  .login-card {
    max-width: 1000px;
    width: 100%;
    border: none;
    border-radius: 15px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 15px 50px rgb(0,77,64);
  }

  .bg-success {
    background-color: #2e7d32 !important;
  }

  img.img-fluid {
    border-radius: 50%;
  }

  .form-control {
    border: 1px solid #ccc;
  }



  .form-control:focus {
    box-shadow: none;
    border-color: #2e7d32;
  }

  .btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s;
  }

  .btn-outline-light:hover {
    background-color: white;
    color: #2e7d32;
  }

  .btn-success {
    background-color: #2e7d32;
    border: none;
    transition: all 0.3s;
  }

  .btn-success:hover {
    background-color: #004d40;
  }

  .position-relative {
    position: relative;
  }


  .toggle-password-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    z-index: 1;
  }

  .invalid-feedback {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    color: red;
    white-space: nowrap;
  }


  .form-control {
    height: calc(2.375rem + 2px);
    padding-right: 2.5rem;
    box-sizing: border-box;
  }


  .mb-3 {
    margin-bottom: 40px;
  }

