/* body {
  background: #000;
  font-family: Arial, sans-serif;
  color: white;
} */

/* Title */
.title {
  position: relative;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Form */
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 20px auto 0;
  padding-bottom: 2cm;
}

/* Row fields */
.row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

/* Input + textarea styling */
input,
textarea {
  background: #0d0d0d;
  border: none;
  color: white;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  height: 200px;
  resize: vertical;
  margin-bottom: 20px;
}

/* Submit button */
.submit-btn {
  background: #e60000;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.submit-btn:hover {
  background: #cc0000;
}