/* assets/css/styles.css */

/* Import Pirate fonts */
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');

body, h1, h2, h3, h4, h5, h6, p, a, button, input, select {
  font-family: 'Pirata One', cursive, serif;
}

body {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: #fff;
  margin: 0; 
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px #000;
}

form {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #fdbb2d;
  max-width: 400px;
  width: 100%;
  margin-bottom: 2rem;
}

input, select, button {
  font-size: 1rem;
  padding: 0.7rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: none;
  width: 100%;
}

input, select {
  background: #fff;
  color: #333;
}

button {
  background: #fdbb2d;
  color: #1a2a6c;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

button:hover {
  background: #b21f1f;
  color: #fff;
  border-color: #fdbb2d;
}

p {
  font-size: 1.2rem;
  max-width: 400px;
  background: rgba(0,0,0,0.3);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #b21f1f;
  margin: 0.5rem 0 2rem;
  text-align: center;
}

a {
  color: #fdbb2d;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
}

a:hover {
  text-decoration: underline;
}

hr {
  width: 100%;
  max-width: 400px;
  border: 0;
  border-top: 2px solid #fdbb2d;
  margin: 2rem 0;
}

/* Optional: feedback message style */
.feedback-message {
  padding: 10px;
  background: #def;
  border: 1px solid #89c;
  max-width: 400px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: #134;
  font-weight: bold;
  text-align: center;
}
