   body {
      font-family: 'Libre Baskerville', serif;
      
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: url('/doctor/assets/images/Post-01~5.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    .login-container {
      width: 100%;
      background-color: rgba(42, 156, 250, 0.897);
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      overflow: hidden;
    }

.image-container {
  flex: 0 0 45%; /* shrink to 40% width */
  max-width: 50%;
  background: url('/doctor/assets/images/Mediclinic.png') no-repeat center center;
  background-size: cover;
  height: 100%;
  min-height: 420px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


    .form-container {
      padding: 40px 30px;
    }
    .form-control {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #0a0a0a;
    }

    .form-control:focus {
      background: rgba(255, 255, 255, 0.2);
      color: #181717;
      border-color: #6a11cb;
      box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
    }

    .btn-primary {
      background: #2575fc;
      border: none;
    }

    .btn-primary:hover {
      background: #6a11cb;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .image-container {
        min-height: 175px;
        height: 175px;
        border-radius: 20px 20px 0 0;
  max-width: 100%;

       
      }


      .form-container {
        padding: 30px 20px;
      }
    }

    @media (max-width: 400px) {
      .form-container h2 {
        font-size: 20px;
      }

      .btn-lg {
        font-size: 14px;
        padding: 10px;
      }
    }


.text-decoration-underline{
    color: #6a11cb;
}
    /* Tablets like iPad Mini (portrait mode) */
@media (max-width: 820px) {
  .login-container {
    flex-direction: column;
    border-radius: 20px;
  }

  .image-container {
    height:400px;
    border-radius: 15px 15px 0 0;
  }

  .form-container {
    padding: 30px 20px;
  }


}

@media (min-width: 992px) {
  .login-wrapper {
    display: flex;
    justify-content: flex-end; /* Push login container to right */
    align-items: center;
    min-height: 100vh;
    padding: 0 40px; /* Padding on sides */
  }

  .login-container {
    margin-right: -500px;
    width: 100%;
    max-width: 730px;
  }
}

/* Sticky Footer for short content */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #212529;
}



/* Prevent Sign In button from hiding behind footer */
@media (max-width: 768px) {
  body {
    padding-bottom: 90px; /* Adjust based on footer height */
  }

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .login-container {
    margin-bottom: 20px; /* give slight space before footer */
  }
}


/* Add space between navbar and login container on mobile */
@media (max-width: 768px) {
  .login-container {
    margin-top: 90px; /* space below navbar */
  }
}