/* ===== CONTACT PAGE ONLY ===== */

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(to right, #e3f2fd, #f0f9ff);
}

a {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgb(8, 8, 66);
  font-weight: bold;
  text-decoration: none;
}

.contact-container {
  background: white;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.contact-container h1 {
  color: rgb(8, 8, 66);
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid rgb(177, 216, 250);
  border-radius: 5px;
}

button {
  width: 100%;
  background: rgb(8, 8, 66);
  color: aqua;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: black;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
