@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

.contact {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push footer to bottom */
  align-items: center; /* Center horizontally */
}

.contact-content {
  width: 100%;
  max-width: 600px;
  padding: 0 24px; /* Optional horizontal padding */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Makes children (inputs) stretch */
  justify-content: center;
  flex: 1;
  color:  white;
  text-align: center;
  font-size: 1.2rem;
}

.contact-content p {
  text-align: left;
  margin: 48px 0px;
  font-family: "Barlow";
  font-weight: 600;
}
.input {
  background-color: rgba(61, 61, 61, 0.76);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-bottom: 16px; /* Adds spacing between fields */
  width: 100%; /* Make it stretch to full width of parent */
  box-sizing: border-box; /* Ensures padding doesn't break width */
  border-radius: 4px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.404);
  font-size: 1.1rem;
}

.d-flex.justify-content-end {
  width: 100%;
}
