body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('/img/h8.jpg'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #333;
}

.container {
  display: flex;
  justify-content: flex-end; /* Align the form to the right */
  align-items: center;
  height: 100%;
  padding: 20px;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.95); /* Add slight transparency for readability */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 400px; /* Adjust width to match the screenshot */
  max-width: 90%;
}

.form-container h1 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.8em;
  color: #333;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px;
}

.input-group i {
  margin-right: 10px;
  color: #aaa;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1em;
}

.input-group .toggle-password {
  cursor: pointer;
  color: #aaa;
}

label {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #555;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 10px;
}

button:hover {
  background-color: #0056b3;
}

p {
  text-align: center;
  font-size: 0.9em;
  margin: 5px 0;
}


/* Agreement Section */
.form-group {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  margin-bottom: 15px;
}

.form-group input[type="checkbox"] {
  margin-right: 10px; /* Add spacing between the checkbox and the label */
  width: 13px; /* Optional: Adjust checkbox size */
  height: 13px; /* Optional: Adjust checkbox size */
}

.form-group label {
  font-size: 0.9em;
  color: #555;
  margin: 0; /* Remove extra margins */
}
