  /* Full-page background in blue */
body {
    background-color: #070930; /* Blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Subscribe box */
.subscribe {
    position: relative;
    height: 140px;
    width: 260px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 4px;
    color: #333;
    box-shadow: 0px 0px 60px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0px; 
}

/* Subscribe label */
.subscribe p {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Email input field */
.subscribe input {
    border: none;
    border-bottom: 1px solid #d4d4d4;
    padding: 10px;
    width: 90%;
    background: transparent;
    text-align: center;
    transition: all .25s ease;
}

.subscribe input:focus {
    outline: none;
    border-bottom: 1px solid #FFD700; /* Yellow highlight */
}

/* Submit button */
.subscribe .submit-btn {
    position: absolute;
    border-radius: 30px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    background-color: #FFD700; /* Yellow button */
    color: #000; /* Black text */
    padding: 12px 25px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 5px;
    right: -10px;
    bottom: -20px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: -5px 6px 20px 0px rgba(26, 26, 26, 0.4);
}

.subscribe .submit-btn:hover {
    background-color: #FFC000; /* Slightly darker yellow */
    box-shadow: -5px 6px 20px 0px rgba(88, 88, 88, 0.569);
}

/* Footer section */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #040b35;  /* Dark blue background */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* PAN image */

.pan-entry-container {
    text-align: center;
    margin-top: 20px;
}

.pan-sample-img {
    width: 300px;  /* Adjust size as needed */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* styles.css */

body {
    background-color: #0a0a30;
    color: white;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.card {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
    width: 350px;
    text-align: left;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

.btn {
    display: block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0f023a;
    color: rgb(244, 241, 241);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.btn:hover {
    background-color: #e6b800;
}


/* Goback Button */

.btn {
    width: 165px;
    height: 62px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    border-radius: 1rem;
    border: none;
    position: relative;
    align-items: center;
    background: #100720;
    transition: 0.1s;
  }
  
  .centered-container {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;  /* Centers vertically */
   /* Full viewport height */
}

  .btn::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .btn:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    transition: 0.5s;
  }


  /* Result page box */

  /* From Uiverse.io by bhaveshxrawat */ 
.card {
    width: 190px;
    height: 254px;
    background: #07182E;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    text-align: center;
  }
  
  .card h2 {
    z-index: 1;
    color: white;
    font-size: 1em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

  }

  .details-container {
    z-index: 1;
    color: white;
    font-size: 1em;
    text-align: center;
    display: block; /* Ensure it’s visible */
}

.detail {
    margin-bottom: 8px;
    display: block;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
  
  .card::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 130%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
    
  }
  
  @keyframes rotBGimg {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .card::after {
    content: '';
    position: absolute;
    background: #07182E;
    ;
    inset: 5px;
    border-radius: 15px;
  }  
  /* .card:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
  } */


