* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #6ec1b3, #0e7a7d);
}

.container {
  display: flex;
  min-height: 100vh;
}
.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("../images/GreenBackground4k.png") no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Left Section */
.left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left img {
  width: 80%;
  max-width: 420px;
  opacity: 0.9;
}

/* Right Section */
.right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 420px;
  color: #fff;
}

.logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.login-box h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.login-box p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.login-box a {
  color: #0b6d6f;
  text-decoration: none;
  font-weight: 500;
}
.forgot a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

form {
  margin-top: 25px;
}

form input {
  width: 100%;
  padding: 14px;
  border-radius: 25px;
  border: none;
  margin-bottom: 15px;
  outline: none;
}

form button {
  width: 100%;
  padding: 14px;
  border-radius: 25px;
  border: none;
  background: #0b6d6f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background: #095b5d;
}

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

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left {
    display: none;
  }

  .right {
    padding: 30px;
  }
}

button#submit {
  margin-top: 10px;
}
@media (min-width: 1400px) {
  .container {
    width: 100%;
  }
  .left img {
    width: 80%;
    max-width: none;
  }
  .left {
    justify-content: end;
  }
  .login-box {
    width: 70%;
    max-width: none;
  }
  .logo {
    width: 130px;
    height: 130px;
  }
  .logo img {
    width: 100%;
  }
  .login-box h2 {
    margin-bottom: 16px;
    font-size: 54px;
  }
  .login-box p {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
