body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #112656;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .logo {
  width: 80px;
  margin-bottom: 1rem;
}

h1 {
  color: #FD9803;
  margin-bottom: 1rem;
}

button {
  background-color: #FD9803;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
   margin-bottom: 1rem;
}

button:hover {
  background-color: #e07f02;
}

#passwordDisplay {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  word-break: break-word;
  color: #112656;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #f1f1f1;
  color: #112656;
  border-radius: 5px;
  padding: 1.5rem;
  line-height: 1;
  text-transform: capitalize;
}


#copyBtn {
  background-color: #112656;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#copyBtn:hover {
  background-color: #0f1d45;
}
