body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
     min-height: 95vh;
  background: linear-gradient(to right, #7bc6cc, #be93c5);
  color: #333;
}

/* The white card in the middle */
.container {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
}

button {
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  background: #7bc6cc;
  color: white;
  font-weight: bold;
  cursor: pointer;
  
}

button:hover {
  background: #5fa3a9;
}

#copyBtn {
    display:none; 
}

#message {
  display: None;
}

#passwordContainer {
  margin: 5px 5px;
  display: flex;
  justify-content: space-between;
}

#generateContainer{
  margin: 5px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}