
  /* html,body{
    display: grid;
    height: 100%;
    place-items: center;
    background: #000;
  } */

   .card-bod{
    position: relative;
    height: 100vh;
    background: lightyellow;
      margin: 0;
      height: 420px;
      max-height: 480px;
      padding: 10px;
      display: flex;
      align-items: center;
      align-content: center;
      justify-content: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, rgba(113, 55, 175, 0.9), rgba(68, 116, 199, 0.9)), 
                  url("https://source.unsplash.com/1600x900/?abstract,geometry") no-repeat center/cover;
    }
 .glass-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* shift back by half */
  background: lightgreen;

      height: 400px;
      width: 97.5%;
      max-width: 100%;
      margin: 10px 0 10px ; 
      padding: 1rem 2rem;
      border-radius: 1.5rem;
      background: #14ffe9;

      /* 🔥 Background image inside form */
      background: url("https://source.unsplash.com/500x600/?technology,abstract") no-repeat center/cover;
      overflow: auto;
      overflow-x: hidden;

      /* Overlay for readability */
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
      animation: fadeIn 0.9s ease-in-out;
    }
    .glass-card::before {
      width: 100%;
      max-width: 100%;
      /* content: ""; */
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.45); /* dark overlay for contrast */
      /* backdrop-filter: blur(6px); */
      border-radius: inherit;
      z-index: 1;
      overflow-y: scroll;
    }

  .center{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .outer{
    position: relative;
    margin: 0 50px;
    background: #ffc107;
  }
  .button{
    height: 70px;
    width: 220px;
    border-radius: 50px;
  }
  .circle{
    height: 100px;
    width: 100px;
    border-radius: 50%;
  }
  .circle2{
    height: 100px;
    width: 100px;
    border-radius: 50%;
  }
  .outer button, .outer span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  button{
    background: #000;
    color: #f2f2f2;
    outline: none;
    border: none;
    /* font-size: 20px; */
    z-index: 9;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    cursor: pointer;
    
  }
  .button button{
    height: 60px;
    width: 210px;
    border-radius: 50px;
  }
  .circle button{
    height: 90px;
    width: 90px;
    border-radius: 50%;
  }
  .outer span{
    height: 100%;
    width: 100%;
    background: inherit;
  }
  .button span{
    border-radius: 50px;
  }
  .circle span{
    border-radius: 50%;
  }
  .outer:hover span:nth-child(1){
    filter: blur(7px);
  }
  .outer:hover span:nth-child(2){
    filter: blur(14px);
  }
  .outer:hover{
    background: repeating-linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
    animation: rotate 1.5s linear infinite;

  }
  #r{
    background-color: red;
    border: 1px solid #000;
    font-size: 14px;
    color: white;
  }
  #v, .v{
    background-color: green;
    border: 1px solid #000;
    font-size: 14px;
    color: white;
    padding-top: 34%;
  }
  
  @keyframes rotate {
    0%{
      filter: hue-rotate(0deg);
    }
    100%{
      filter: hue-rotate(360deg);
    }
  }
  @media (max-width: 640px){
    .center{
      flex-wrap: wrap;
      flex-direction: column;
    }
    .outer{
      margin: 50px 0;
    }
  }





