body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f5f7;
  font-family: Arial, sans-serif;
  background-image: url("../pics/bgl.png");
  background-repeat: no-repeat;
  background-size: cover; /* Makes the background image cover the entire viewport */
  background-position: center; /* Centers the background image */
  font-family: "Poppins", sans-serif;
}
.container {
  width: 400px;
  padding: 20px;
  background-color: #128f8b;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center text in the container */
  position: relative; /* Center-align the text and form elements */
}

.container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}
#fgticon{
  width: 100px;
  height: 100px;
}
#back{
  display: flex;
  align-items: flex-start;
  height: 50px;
  width: 50px;
  margin-left: -4%;
}

.container h3 {
  color: white;
  margin-bottom: 15px;
  font-weight: normal;
}

.container input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #128f8b;
  box-sizing: border-box;
}
input[type="email"]::placeholder {
  color: #ffffff;
  opacity: 1;
}
.container .button {
  width: 100%;
  padding: 10px;
  background-color: #44abad;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
  font-weight: bold;
}

.container .button:hover {
  background-color: white;
  color: #128f8b;
}
@media screen and (max-width: 600px) {
  .container {
    margin: 20px; /* Adds margin around the container in mobile view */
    width: auto; /* Allows the container to adjust its width based on available space */
    padding: 15px; /* Optional: reduce padding for smaller screens */
  }
  
  .button {
    width: 100%; /* Ensures the button takes full width in mobile view */
  }
}
