* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #020617;
  padding: 25px 30px;
  border-radius: 12px;
  width: 700px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

h2, h3 {
  text-align: center;
  margin-bottom: 15px;
}

label {
  display: block;
  margin: 6px 0;
  font-size: 14px;
}

input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0 12px;
  border-radius: 6px;
  border: none;
  outline: none;
}

input[type="checkbox"] {
  margin-right: 6px;
}

.result-row{
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.box{
  flex:1;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 8px;
  text-align: center;
}

#usernames, #passwords, #mail{
  margin-top: 8px;
  white-space: pre-line;
  font-family: monospace;
}


button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: #38bdf8;
  color: #020617;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #0ea5e9;
}

.results {
  margin-top: 15px;
}

.header,
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.header {
  font-weight: bold;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.row {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  word-break: break-all;
}
