* {
  box-sizing: border-box;
}
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px); /* Subtract navbar height */
  padding: 20px;
  background-color: rgb(2,2,2);
}
.contact-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-box {
  margin-bottom: 20px;
}

.form-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.submit-button {
  text-align: center;
}

.submit-button button {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

#status-message {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}
