.password-eye {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('/assets/images/Eye.png') no-repeat center;
  background-size: contain;
}
.psweye{
  border-radius: 25px;
}

/* General container */
.login-container {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

/* Left Section with Face Illustration */
.left-section {
  flex: 1;
  max-width: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.face-graphic {
  background: url("/assets/images/face.png") no-repeat center;
  background-size: contain;
  width: 80%;
  height: 80%;
}

#root {
  background: url("/assets/images/GreenBackground4k.png") no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Right Section with Login */
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  max-width: 500px;
}

/* Logo */
.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.logo img {
  width: 100px;
}

/* Title */
.title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}
.title span {
  font-weight: bold;
}

/* Subtitle */
.subtitle {
  font-size: 0.95rem;
  line-height: 2.5;
  margin-bottom: 30px;
  color: white;
}
.subtitle a {
  color: #d4fff9;
  text-decoration: underline;
}

/* Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login-form input {
  padding: 12px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
}

/* Buttons */
.forgot {
  background: #4ea19d;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  width:200px;
}
.forgot:hover {
  background: #3c8582;
}

.login-btn {
  background: #004d4c;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.login-btn:hover {
  background: #002f2e;
}

/* Responsive */
@media (max-width: 900px) {
  .login-container {
    flex-direction: column;
    align-items: center;
  }

  .left-section {
    display: none; /* hide face graphic on small devices */
  }

  .right-section {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
}

/* --- Popup Styles --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-box {
  background: #f6eecb;
  border-radius: 20px;
  padding: 30px 25px;
  width: 90%;
  max-width: 415px;
  position: relative;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333;
}

/* Popup Logo */
.popup-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Popup Text */
.popup-text {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Input & Submit */
.popup-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 5px;
}

.popup-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  border-radius: 25px;
  font-size: 0.9rem;
}
/* Input & Submit */
.popup-form2 {
  align-items: center;
  border-radius: 25px;
  padding: 5px;
}

.popup-form2 input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  margin-bottom:10px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.arrow-btn {
  background: #004d4c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 5px;
  transition: 0.3s;
}
.arrow-btn:hover {
  background: #002f2e;
}

/* Responsive */
@media (max-width: 500px) {
  .popup-box {
    padding: 20px;
  }
  .popup-text {
    font-size: 0.85rem;
  }
}
