/* Background setup */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-image: url('../assets/submit.jpeg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #342E1D;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Centered form wrapper */
.submit-wrapper {
  background-color: rgba(255, 255, 240, 0.92);
  backdrop-filter: blur(1.5px);
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* Headline and intro */
.submit-wrapper h1 {
  font-size: 2.5rem;
  color: #A40865; /* beet purple */
  margin-bottom: 20px;
}

.submit-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #3A1900;
}

/* Form styling */
.submit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.submit-form label {
  font-weight: bold;
  font-size: 1rem;
  color: #404040;
  text-align: left;
}

.submit-form input,
.submit-form select,
.submit-form textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background-color: #FFF6EE;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}

.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px #FFA500;
}

/* Submit button */
.submit-form button {
  padding: 14px 32px;
  background: linear-gradient(to right, #FFA500, #E45811);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* File input tweaks */
.submit-form input[type="file"] {
  padding: 8px;
  background-color: #FFF0DE;
}

/* Success message */
#success-message {
  background-color: #A0D468;
  color: white;
  padding: 20px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  font-size: 1rem;
}

/* Back to Home button */
.back-buttons {
  margin-top: 40px;
}

.back-buttons a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #A40865, #E45811);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-buttons a:hover {
  transform: scale(1.05);
}
