body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #071227;
  color: #e0e0e0;
}

.page-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1350px;
  background-color: #001b37;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

#login {
  width: 320px;
}

.hidden {
  display: none;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #071227;
  color: #e0e0e0;
  box-sizing: border-box;
}

textarea {
  min-height: 150px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

button:disabled {
  background-color: #555;
  cursor: not-allowed;
}

.remember-me {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.remember-me input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}

.output-container {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #071227;
  position: relative;
  text-align: left;
}

.output {
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
}

.copy-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: green;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: darkgreen;
}