/*css doc*/

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #243f7e;
  color: #e5e7eb;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #476cc0;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 360px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
}

.options label {
  font-size: 14px;
}

input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
}

button {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: none;
  border-radius: 5px;
  background: #243f7e;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #9b46e5;
}
