* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #132d46, #01c38e);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background: #1a1e29;
  padding: 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.form-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #132d46;
  color: #fff;
  font-size: 16px;
}

input::placeholder {
  color: #bbb;
}

button {
  background-color: #01c38e;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #00a377;
}
.dias-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
  justify-content: center;
}

.dias-container button {
  background: #132d46;
  color: #fff;
  border: 2px solid transparent;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.dias-container button:hover {
  background: #01c38e;
}

.dias-container button.selected {
  border-color: #01c38e;
  background: #01c38e;
}
