body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* Adjust the opacity value to control the overlay */
}

.container {
  position: relative;
  z-index: 1;
}

.center-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh; /* Optional: Set a minimum height for the center box */
}

.col-lg-10 {
  max-width: 800px; /* Adjust the maximum width of the form */
  margin-top: 30px;
  padding: 30px;
  background-color: rgba(
    255,
    255,
    255,
    0.9
  ); /* Add a semi-transparent white background */
  border-radius: 10px;
}
.mt-3 {
  text-decoration: none;
  color: rgb(242, 11, 11);
  font-size: 18px;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.mt-3:hover {
  color: green;
  text-decoration: none;
  font-size: 18px;
}
.form-control {
  background: aliceblue;
  border-radius: 20px;
  border-color: black;
  color: rgb(
    0,
    0,
    0
  ) !important; /* Set the text color to white with !important */
  font-size: large;
  font-weight: 500;
}
/* Assuming you have a .form-group wrapper around the labels and inputs */
.form-group label {
  color: rgb(0, 0, 0); /* Set the color of the labels */
  font-size: 18px; /* Adjust the font size as desired */
  font-weight: 500; /* Adjust the font weight as desired */
  display: block; /* Ensure each label is displayed on its own line */
  margin-bottom: 5px; /* Add some spacing between the labels and inputs */
}

/* Optional: To style the input fields as well */
.form-group input[type="email"],
.form-group input[type="password"] {
  /* Your existing styles for the input fields */
  font-size: 16px; /* Adjust the font size as desired */
  padding: 10px; /* Adjust the padding as desired */
}

.form-control:hover {
  background: aliceblue;
  font-size: large;
  font-weight: 500;
}

