/* index.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.start-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 480px;
  text-align: center;
}

h1 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

select {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease-in-out;
}

select:focus {
  border-color: #3d3fba;
  outline: none;
}

.btn {
  margin-top: 16px;
  padding: 12px;
  background-color: #3d3fba;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3d3fba;
}

select option {
  background-color: #fff;
  color: #333;
}

select:focus {
  border-color: #3d3fba;
  outline: none;
}
select option:checked {
  background-color: #3d3fba;
  color: #000;
}
