body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #130a12;
}

form {
  background-color: #f3efef;
  padding: 25px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.form {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.form p{
	text-align: center;
	font-weight: bold;
	color: #676363;
}
form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

form input[type="text"],
form input[type="date"],
form input[type="number"],
form select {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	box-sizing: border-box;
	border: 1px solid #959090;
	border-radius: 4px;
	font-size: 1rem;
	background: #dfd9d9
}

form input[type="submit"] {
	background-color: #fb4616;
	color: white;
	padding: 10px;
	border: none;
	cursor: pointer;
	border-radius: 4px;
	width: 100%;
	font-size: 1rem;
}

form input[type="submit"]:hover {
	background-color: #fb4616;
}
h3 {
  text-align: center;
  margin-top: 0;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="number"],
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#participants_container {
  margin-top: 10px;
}

input[type="submit"] {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}
.page-header {
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding: 15px 20px;
background-color: #dfdcdc;
border-bottom: 1px solid #ddd;
}

.page-header h1 {
font-size: 1.5rem;
margin: 0;
text-align: center;
}

.back-button {
position: absolute;
left: 0px;
text-decoration: none;
font-size: 2rem;
color: #fb4616;
transition: color 0.2s;
}

.back-button:hover {
color: #fb4616;
}
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 20px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.header img {
  height: 60px;
  max-width: 100%;
}
@media (max-width: 600px) {
  .form {
	padding: 15px;
  }
   .header {
		flex-direction: row;
		gap: 20px;
	  }
}