
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  display: flex;
}

h1,h2,h3,h4,h5,h6,p,span{
  font-family: 'poppins','sans serif';
}
.login-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Left Side - Full Height Image */
.image-side {
  flex: 1;
  background:#F6F9FF;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(156, 24, 233) 0%, rgb(89, 9, 180) 100%);
}

.image-side h2 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Right Side - Full Height Form */
.form-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #F6F9FF;
}

.form-side h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4b0082; /* Purple Color */
  text-align: center;
}

.form-container {
  width: 80%; /* Increased width */
  max-width: 450px; /* Maximum width for larger screens */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.form-control {
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}

.btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  border-radius: 10px;
  background-color: #6449dd; /* Purple Button */
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color:  #6a0dad; 
 
  color:#fff;
}

.forgot-password {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.forgot-password a {
  color: #6a0dad; /* Purple Link */
  text-decoration: none;
}

.forgot-password a:hover {
  color: #4b0082;
}

@media (max-width: 968px) {
  .login-container {
    flex-direction: column;
  }

  .image-side {
    height: 40vh;
  }

  .form-container {
    width: 90%; /* Reduced width for smaller screens */
    padding: 1.5rem;
  }

  .form-side h1 {
    font-size: 1.8rem; /* Adjusted heading size */
  }
}
