body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f8f5; /* Light greenish background */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  background-color: #ffffff; /* White background */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
  text-align: center;
}

header {
  margin-bottom: 30px;
}

h1 {
  color: #008000; /* Green heading */
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  color: #666666; /* Gray text */
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

form {
  text-align: center;
  margin-bottom: 20px;
}

.mnemonic-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mnemonic-inputs input[type="text"] {
  width: calc(25% - 20px); /* Adjusting for padding */
  padding: 12px;
  margin: 10px;
  border: 1px solid #cccccc; /* Light gray border */
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.mnemonic-inputs input[type="text"]:focus {
  border-color: #008000; /* Green border on focus */
  outline: none;
}

button {
  padding: 14px 28px;
  background-color: #008000; /* Green button */
  color: #ffffff; /* White text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  background-color: #006400; /* Dark green on hover */
}

.info {
  background-color: #f0f8f5; /* Light greenish background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
  text-align: left;
  margin-top: 20px;
}

.info h2 {
  color: #008000; /* Green heading */
  font-size: 24px;
  margin-bottom: 10px;
}

.info p {
  color: #666666; /* Gray text */
  font-size: 16px;
  line-height: 1.5;
}
