/* style.css */
body {
  background-color: #121212;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #1f1f1f;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  text-align: center;
  width: 320px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.senha-box {
  display: flex;
  align-items: center;
  background: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

#senha {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: none;
  background: transparent;
  color: white;
  outline: none;
}

.senha-box button {
  background-color: transparent;
  border: none;
  color: #aaa;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s;
}

.senha-box button:hover {
  color: #fff;
}

button#gerar {
  background-color: #6c63ff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

button#gerar:hover {
  background-color: #5952e3;
}

#msg-copiado {
  margin-top: 10px;
  font-size: 14px;
  color: #62ff9e;
}

