body {
  /* Background Styling */
  background-image: url("Images/backgound Image 2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;

  /* Layout Styling */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

.search-wrapper {
  flex: 1; /* take remaining space */
  margin: 0 10px;
}

.form-box {
  background-color: #a3b1a8;
  padding: 40px;
  border: 1px solid #000;
  width: 300px;
  text-align: center;
}

input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #000;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #c0c0c0;
  border: 1px solid #000;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

a {
  display: block;
  margin-top: 15px;
  color: #000;
  font-size: 14px;
}

.error-popup {
  color: #b30000;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  text-align: left;
  padding-left: 5px;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
