body {
    display: block;
    font-family: 'Space Mono', monospace;
    background: linear-gradient(-70deg, #313233, #000000);
    height: 100vh;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(120deg, #b81e1e, #0430d1);
  }
  
  .circles {
    position: absolute;
    height: 270px;
    width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .circle-1 {
    height: 300px;
    width: 300px;
    top: 100px;
    left: -50px;
    opacity: 0.8;
    animation: float 6s cubic-bezier(0.54, 0.085, 0.5, 0.92) infinite alternate;
    animation-delay: 3.5s;
  }
  
  .circle-2 {
    height: 240px;
    width: 240px;
    bottom: 40px;
    right: -100px;
    opacity: 0.8;
    animation: float 6s cubic-bezier(0.54, 0.085, 0.5, 0.92) infinite alternate;
    animation-delay: 2s;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(1px); }
  }
  
  .mdl {
    width: 420px;
  }
  
  h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    padding-left: 30px;
    padding-bottom: 20px;
    color: #ffffff;
    width: 420px;
    line-height: 1.5em;
    text-align: left;
  }
  
  .card {
    height: 260px;
    width: 420px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(35px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.25);
    padding: 30px;
    overflow: hidden;
  }
  
  .logo {
    padding-bottom: 40px;
    opacity: 0.9;
  }
  
  input {
    font-family: 'Space Mono', monospace;
    border: none;
    font-size: 16px;
    color: #ffffff;
    background: none;
  }
  
  input:focus, input:hover {
    border-bottom: 2px solid white;
    outline: none;
  }
  
  input::placeholder {
    color: #b5b5b5;
  }
  
  .card-number input {
    font-size: 40px;
    height: 50px;
    color: whitesmoke;
    width: 100%;
  }
  
  .card-name input,
  .expiration-date input,
  .ccv input {
    font-size: 16px;
    height: 26px;
    width: 100%;
  }
  
  .group {
    display: flex;
    gap: 20px;
  }
  
  .welcome-text {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    color: silver;
    margin-bottom: 10px; /* This adds the small space below "Welcome to" */
  }
  
  #card-number {
    font-family: 'Space Mono', monospace;
    font-size: 25px;
    color: silver;
    margin-bottom: 4px;
    display: block;
    position: relative;
  }
  
  .card-name {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    color: silver;
    margin-bottom: 4px;
    display: block;
    position: relative;
  }
  
  .expiration-date {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    color: silver;
    margin-bottom: 4px;
    display: block;
    position: relative;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .underline {
    transition: all 0.3s;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    bottom: 0;
    left: -100%;
  }
  
  .box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  label {
    color: white;
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    display: block;
    padding-bottom: 2px;
  }
  
/* Glass Social Icons */
.glass-social-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  gap: 10px;
}
.glassIco {
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  text-decoration: none;
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.glassIco:before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  filter: blur(0px);
  transition: 400ms;
  transform: skewX(45deg) translateX(110%);
}
.glassIco:hover {
  transform: translateY(-10px) scale(1.07);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}
.glassIco:hover:before {
  transform: skewX(45deg) translateX(-110%);
}
.glassIco > * {
  opacity: 0.85;
  z-index: 1;
}
  