body {
  margin: 0;
  padding: 0;
  background: #111827;
  color: #e5e7eb;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #1f2937;
  border: 1px solid #374151;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.icon {
  width: 44px;
  display: block;
  margin: 0 auto 20px auto;
}

.title {
  text-align: center;
  font-size: 16px;
  color: #93c5fd;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
  padding-bottom: 8px;
}

.line {
  font-family: Consolas, monospace;
  font-size: 14px;
  margin-bottom: 10px;
}

a {
  color: #38bdf8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.proceed {
  display: inline-block;
  margin-top: 20px;
  background-color: #2563eb;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.3s;
}

.proceed:hover {
  background-color: #1d4ed8;
}
