@charset "utf-8";

/* Body background already white */
body {
  background-color: #f9f9f9; /* light off-white for better contrast */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Centered form container */
.blank {
  display: flex;
  justify-content: center;
  padding: 60px 20px; /* vertical spacing + mobile padding */
}

/* Contact form styling */
.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

/* Hover effect on form (subtle lift) */
.contact-form:hover {
  transform: translateY(-3px);
}

/* Row input styling */
.row {
  display: flex;
  gap: 20px;
}

.row input {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  transition: border 0.3s, box-shadow 0.3s;
}

/* Input hover/focus effect */
input:focus,
textarea:focus {
  border-color: #155E9A;
  box-shadow: 0 0 8px rgba(21, 94, 154, 0.3);
  outline: none;
}

/* Textarea styling */
textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  transition: border 0.3s, box-shadow 0.3s;
}

/* Submit button styling */
button {
  background-color: #155E9A;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

/* Button hover/focus */
button:hover {
  background-color: #0d4470;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .contact-form {
    padding: 30px 20px;
  }

  button {
    width: 100%;
  }
}
