* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a1a;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

form {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

fieldset {
  border: none;
  margin-bottom: 20px;
}

legend {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 6px;
  margin-top: 15px;
  font-size: 0.95rem;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #4b367c;
  outline: none;
}

button {
  background-color: #4b367c;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #372b5d;
}

section {
  width: 100%;
  max-width: 500px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

#team-list ul {
  list-style: none;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#team-list li {
  padding: 4px 0;
  font-size: 0.95rem;
}
