/* Global Styles for Biovoid Synapse */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0c0c0c, #1f1f1f);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  max-width: 600px;
min-width: 100px;
zoom: 100%;
margin: auto;
}

.container {
  max-width: 600px;
  padding: 40px;
  background: rgb(0, 0, 0, 0.7);
  border: 2px solid #cc005f;
  border-radius: 12px;
  box-shadow: 0 0 20px #cc005f30;
  margin: 20px;
}


h1, h2, h3, h4, h5, h6 {
  color: #ff3366;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}
.item {
  background-color: #1a1a1a;
  border: 2px solid #cc005f;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
}

.item-header {
  font-weight: bold;
  color: #ff3366;
  margin-bottom: 10px;
}

.category-label {
  position: absolute;
  top: -12px;
  left: 10px;
  background-color: #cc005f;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
}

.stats {
  font-size: 14px;
  line-height: 1.6;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #eee;
  font-family: 'Orbitron', sans-serif;
}

button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #cc005f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

button:hover {
  background-color: #ff3366;
}

a {
  color: #ff3366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}


