@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #00ff6a;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Falling code effect on background */
.matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 100, 0.1) 0px,
    rgba(0, 255, 100, 0.1) 2px,
    transparent 2px,
    transparent 4px
  );
  animation: matrixScroll 8s linear infinite;
  z-index: -1;
}

@keyframes matrixScroll {
  from { background-position-y: 0; }
  to { background-position-y: 100vh; }
}

.container {
  width: 90%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  border: 1px solid #00ff6a;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ff6a55;
}

h1, h2 {
  color: #00ff6a;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

/* input, textarea {
  width: 100%;
  background: #000;
  color: #00ff6a;
  border: 1px solid #00ff6a;
  padding: 8px;
  border-radius: 4px;
  outline: none;
} */

input, textarea {
  box-sizing: border-box;  /* Includes padding and border in the total width */
  width: 100%;
  background: #000;
  color: #00ff6a;
  border: 1px solid #00ff6a;
  padding: 8px;
  border-radius: 4px;
  outline: none;
}


textarea {
  height: 80px;
  resize: none;
}

button {
  background: transparent;
  color: #00ff6a;
  border: 1px solid #00ff6a;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

button:hover {
  background: #00ff6a;
  color: #000;
}

#typing-text::after {
  content: "_";
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* .signature {
  position: fixed;
  bottom: 10px;
  right: 15px;
  color: #00ff6a;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 2px;
  user-select: none;
  pointer-events: none;
}

.signature:hover {
  opacity: 1;
  text-shadow: 0 0 5px #00ff6a, 0 0 10px #00ff6a;
} */

.signature {
  position: fixed;
  bottom: 10px;
  right: 15px;
  color: #00ff6a;
  font-family: 'Share Tech Mono', monospace;
  font-size: 42px; /* about 3 times more */
  opacity: 0.8;
  letter-spacing: 2px;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 0 5px #00ff6a, 0 0 10px #00ff6a;
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 5px #00ff6a, 0 0 10px #00ff6a, 0 0 20px #00ff6a, 0 0 30px #00ff6a;
    opacity: 0.7;
  }
  to {
    text-shadow: 0 0 10px #00ff6a, 0 0 20px #00ff6a, 0 0 40px #00ff6a, 0 0 60px #00ff6a;
    opacity: 1;
  }
}
