body {
  font-family: Arial, sans-serif;
  background-color: #eaf4ff; /* Light blue background */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  box-sizing: border-box;
  text-align: center;
}

.logo {
  width: 100px;
  height: auto;
  margin: 0 auto 20px;
}

h3 {
  color: #1e4b7d; /* Dark blue for the heading */
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased gap between elements */
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
  width: calc(50% - 5px);
}

input, textarea, button {
  width: 100%;
  padding: 12px;
  border: 1px solid #b0c4de; /* Light blue border */
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
  color: #a1b5d8; /* Light greyish blue placeholder text */
}

textarea {
  resize: none;
}

button {
  background-color: #1e4b7d; /* Dark blue button */
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease-in-out;
}

button:hover {
  background-color: #1c3d62; /* Darker blue when hovering */
  transform: scale(1.05); /* Slight scaling effect */
}

button:active {
  transform: scale(1);
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1e4b7d; /* Dark blue border on focus */
  box-shadow: 0 0 4px rgba(30, 75, 125, 0.4); /* Blue shadow on focus */
}

input:focus + label, textarea:focus + label {
  font-weight: bold; /* Make the label bold when the input is focused */
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-row input {
    width: 100%;
  }

  button {
    font-size: 14px;
  }
}
