Reset default styling and include border-box
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ensure no vertical scrolling */
html, body {
  height: 100%;
  overflow: hidden;
}

/* Full height container taking up 100vh */
.container-login {
  display: flex;
  height: 100%;
  flex-wrap: wrap; /* For responsive stacking on small screens */
}

/* Left panel styling (50% width) */
.left-panel {
  flex: 0 0 50%;
  background-color: #f8f9fa; /* Light grey background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevent content overflow */
}

/* Right panel styling (50% width) */
.right-panel {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Center logo image styling */
.center-logo {
  display: block;
  margin: 0 auto 0px auto; /* Centers horizontally with bottom margin */
  height: auto;
}
.center-logo-main {
  width: auto;
  height: auto;
  max-width: 115%;
  max-height: 115%;
  object-fit: contain; /* This ensures the image maintains aspect ratio */
}

/* Login form container in right panel */
.login-form {
  width: 80%;
  max-width: 400px; /* Keeps the form from getting too wide */
}

/* Responsive breakpoints for smaller screens */
@media (max-width: 100%) {
  /* On smaller screens, both panels will stack vertically */
  .left-panel,
  .right-panel {
    flex: 0 0 100%;
    height: auto;
  }
}

/* GreenWell text styling */
.logo-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 23.7px;
  text-align: center;
  color: #000; /* Black color */
  margin-top: 1px;
}
.login-subtitle {
  font-weight: 200;
  font-size: 14px;
  line-height: 16.59px;
  letter-spacing: 0;
  text-align: center;
  width: 142px;
  height: 17px;
  margin: 0 auto; /* Center element horizontally if needed */
}
input.form-control {
  background-color: #FAFAFA;
}
input.form-control {
  background-color: #FAFAFA;
  border: 1px solid #ccc; /* Optional: Border color */
  color: #333; /* Optional: Text color */
}

.position-relative {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  /* Optional: aap icon ka size aur color bhi adjust kar sakte hain */
  font-size: 1.2rem;
  color: #666;
}
.btn-success {
  background-color: #007639;
  height: 58px;
  border-radius: 12px;
  font-size: 1rem;
  border: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

/* Hover state me dark shade dena hai agar zaroorat ho */
.btn-primary:hover {
  background-color: #00612e;
}

/* Active and focus state par same color maintain karne ke liye */
.btn-primary:active,
.btn-primary:focus {
  background-color: #007639;
  box-shadow: none;
  outline: none;
}
.btn-success-Text {
  font-weight: 600;
  font-size: 20px;
  line-height: 23.7px;
  letter-spacing: 0;
  text-align: center;
}

.forgot-password-link {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.22px;
  letter-spacing: 0;
  text-align: right;
  color: #007639;
  text-decoration: none; /* Link underline hataane ke liye */
}

.forgot-password-link:hover {
  text-decoration: underline; /* Optional: hover effect */
}
.Forgote-text {
  font-size: 25px;
  font-weight: 700;
  height: 30px;
  letter-spacing: 0px;
  color: #323135;
}

.text-regular {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0px;
  line-height: normal; /* ya simply is property ko hata dein */
  color: #68656E;
}

.phone-number {
  font-weight: 500;
  font-size: 14px;
}

.edit {
  width: 27px;
  height: 25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #007639;
  display: inline-block; /* Width aur height ko properly apply karne ke liye */
  text-align: center; /* Agar text center align chahiye */
}
.reset-password {
  width: 349px;
  height: 30px;
  font-weight: 700;
  font-size: 25px;
  line-height: 29.63px;
  letter-spacing: 0px;
}

