*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at top, #0d1b3d, #000000);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  flex-direction: column;
}
.card {
  width: 320px;
  padding: 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: white;
}
.card h1 {
  font-size: 28px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.primary {
  background: #f4b400;
  color: black;
  border: none;
}
.outline {
  background: transparent;
  border: 2px solid #f4b400;
  color: #f4b400;
}
.btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;
}
.typing{
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #a855f7;
  width: 0;
  animation: typing 3s steps(22) forwards, blink 0.7s infinite;
}

@keyframes typing{
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink{
  50% { border-color: transparent }
}
.tag {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
}
.small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}

footer{
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
