/* Center the container on the page */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  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; /* Ensure container is positioned relative for child absolute positioning */
}

#back {
  display: flex;
  align-items: flex-start;
  height: 50px;
  width: 50px;
  margin-left: -4%;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.info {
  margin-bottom: 20px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}

h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: white;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #128f8b;
  color: #ffffff;
}
input[type="email"]::placeholder {
  color: #ffffff;
  opacity: 1;
}

.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;
}

.button:hover {
  background-color: white;
  color: #128f8b;
}

#verify {
  height: 100px;
  width: 100px;
}

@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 */
  }
}
