        /* Base layout styles */
        body.landing-page {
            margin: 0;
            padding: 0;
            background-color: #000000; /* Pure black background */
            color: #e0e0e0; /* Light text for dark background */
            overflow-x: hidden; /* Prevent horizontal scrolling */
            position: relative;
        }
        
        /* Center alignment helper */
        .text-center {
            text-align: center;
        }

        .lp-container {
            max-width: 840px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1; /* Keep content above decorative elements */
        }

        /* Decorative elements */
        .neon-line {
            position: absolute;
            top: 0;
            left: -340px;
            width: 1000px;   
            height: 200px;
            background-color:rgba(145, 255, 255, 0.2);
            filter: blur(100px);
            z-index: 0;
            rotate: 45deg;
            border-radius: 0;
        }

        .bg-ellipse {
            position: absolute;
            top: -200px;
            left: -200px;
            width: 180px;
            height: 200px;
            background-color: rgba(145, 255, 255, 1);
            /* Create diamond base shape by rotating */
            transform: rotate(-45deg) scaleY(4);
            /* Apply border radius only to left and right corners */
            border-radius: 0 50% 0 50%;
            filter: blur(20px);
            z-index: 0;
            /* Add a subtle animation for a more realistic light effect */
            animation: lightPulse 8s infinite ease-in-out;
        }
        
        /* Responsive adjustments for decorative elements */
        @media (max-width: 768px) {
            .neon-line {
                width: 300px;
                height: 40px;
                left: -50px;
                filter: blur(30px);
                rotate: 10deg;
            }
            
            .bg-ellipse {
                width: 60px;
                height: 60px;
                top: -10px;
                left: -10px;
                filter: blur(8px);
                rotate: 40deg;
            }
        }
        
        @keyframes lightPulse {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }

        /* Header styles */
        .lp-header {
            text-align: center;
            padding: 80px 20px 40px;
            position: relative;
        }

        .lp-header h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .lp-subtitle-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 1.5rem;
        }

        .lp-subtitle-item {
            font-size: 1rem;
            color: white;
            font-weight: 400;
            position: relative;
        }

        .lp-subtitle-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: rgba(145, 255, 255, 0.8);
        }

                 /* Form section styling with subtle candle effect */
                 .lp-form-section {
  position: relative;
  background-color: #000;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 60px;



  /* remove this if you want the outer glow to extend outside */
  /* overflow: hidden; */

  -webkit-animation: candleFlicker 8s infinite ease-in-out alternate;
          animation: candleFlicker 8s infinite ease-in-out alternate;
}

.lp-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;                 /* border thickness */
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(145,255,255,1) 0%, rgba(145,255,255,0) 60%, rgba(145,255,255,0) 100%);
  /* Cut out the center so only the ring remains */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;          /* Chrome/Safari */
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;       /* Firefox */
  /* inner shadow */
  box-shadow:
    inset 3px 5px 6px rgba(255,255,255,0.4),
    inset -3px 5px 5px rgba(255,255,255,0.4);
  pointer-events: none;
}

.lp-form-section::after {
  content: "";
  position: absolute;
  inset: -12px;                 /* extends the glow outward */
  border-radius: inherit;
  /* use a CONIC gradient for a soft directional glow */
  background: conic-gradient(from 0deg at 0% 0%,
              rgba(145,255,255,1),
              rgba(145,255,255,0) 90deg,
              transparent 360deg);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;                  /* sit behind the card background */
}


         /* Subtle candle flicker animation */
         @-webkit-keyframes candleFlicker {
             0% {
                 -webkit-box-shadow: 
                     0 0 10px 3px rgba(224, 247, 250, 0.4),         /* soft blue glow around */
                     0 -12px 25px 5px rgba(145, 255, 255, 0.3),      /* upward blue candle flame */
                     0 -20px 40px 0px rgba(179, 234, 255, 0.2),      /* extended blue aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.5),        /* white core at base */
                     0 1px 5px 0px rgba(179, 234, 255, 0.2);         /* subtle blue at bottom */
             }
             25% {
                 -webkit-box-shadow: 
                     0 0 8px 2px rgba(224, 247, 250, 0.3),           /* softer glow */
                     0 -10px 20px 4px rgba(145, 255, 255, 0.2),      /* smaller flame */
                     0 -15px 30px 0px rgba(179, 234, 255, 0.15),     /* smaller aura */
                     0 -1px 3px 0px rgba(255, 255, 255, 0.4),        /* dimmer core */
                     0 1px 4px 0px rgba(179, 234, 255, 0.1);         /* dimmer bottom */
             }
             50% {
                 -webkit-box-shadow: 
                     0 0 12px 4px rgba(224, 247, 250, 0.35),         /* medium glow */
                     0 -14px 28px 6px rgba(145, 255, 255, 0.25),     /* medium flame */
                     0 -22px 45px 0px rgba(179, 234, 255, 0.18),     /* medium aura */
                     0 -1px 5px 0px rgba(255, 255, 255, 0.45),       /* medium core */
                     0 2px 6px 0px rgba(179, 234, 255, 0.15);        /* medium bottom */
                 -webkit-transform: skew(0.5deg, 0.2deg);            /* subtle distortion */
             }
             75% {
                 -webkit-box-shadow: 
                     0 0 9px 3px rgba(224, 247, 250, 0.25),          /* variable glow */
                     0 -11px 22px 5px rgba(145, 255, 255, 0.2),      /* variable flame */
                     0 -18px 35px 0px rgba(179, 234, 255, 0.15),     /* variable aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.4),        /* variable core */
                     0 1px 5px 0px rgba(179, 234, 255, 0.1);         /* variable bottom */
                 -webkit-transform: skew(-0.3deg, 0.1deg);           /* subtle distortion */
             }
             100% {
                 -webkit-box-shadow: 
                     0 0 11px 3px rgba(224, 247, 250, 0.3),          /* return to moderate glow */
                     0 -13px 26px 6px rgba(145, 255, 255, 0.25),     /* return to moderate flame */
                     0 -24px 48px 0px rgba(179, 234, 255, 0.2),      /* return to moderate aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.5),        /* return to moderate core */
                     0 2px 6px 0px rgba(179, 234, 255, 0.15);        /* return to moderate bottom */
                 -webkit-transform: skew(0.2deg, -0.1deg);           /* subtle distortion */
             }
         }
         
         @keyframes candleFlicker {
             0% {
                 box-shadow: 
                     0 0 10px 3px rgba(224, 247, 250, 0.4),         /* soft blue glow around */
                     0 -12px 25px 5px rgba(145, 255, 255, 0.3),      /* upward blue candle flame */
                     0 -20px 40px 0px rgba(179, 234, 255, 0.2),      /* extended blue aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.5),        /* white core at base */
                     0 1px 5px 0px rgba(179, 234, 255, 0.2);         /* subtle blue at bottom */
             }
             25% {
                 box-shadow: 
                     0 0 8px 2px rgba(224, 247, 250, 0.3),           /* softer glow */
                     0 -10px 20px 4px rgba(145, 255, 255, 0.2),      /* smaller flame */
                     0 -15px 30px 0px rgba(179, 234, 255, 0.15),     /* smaller aura */
                     0 -1px 3px 0px rgba(255, 255, 255, 0.4),        /* dimmer core */
                     0 1px 4px 0px rgba(179, 234, 255, 0.1);         /* dimmer bottom */
             }
             50% {
                 box-shadow: 
                     0 0 12px 4px rgba(224, 247, 250, 0.35),         /* medium glow */
                     0 -14px 28px 6px rgba(145, 255, 255, 0.25),     /* medium flame */
                     0 -22px 45px 0px rgba(179, 234, 255, 0.18),     /* medium aura */
                     0 -1px 5px 0px rgba(255, 255, 255, 0.45),       /* medium core */
                     0 2px 6px 0px rgba(179, 234, 255, 0.15);        /* medium bottom */
             }
             75% {
                 box-shadow: 
                     0 0 9px 3px rgba(224, 247, 250, 0.25),          /* variable glow */
                     0 -11px 22px 5px rgba(145, 255, 255, 0.2),      /* variable flame */
                     0 -18px 35px 0px rgba(179, 234, 255, 0.15),     /* variable aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.4),        /* variable core */
                     0 1px 5px 0px rgba(179, 234, 255, 0.1);         /* variable bottom */
             }
             100% {
                 box-shadow: 
                     0 0 11px 3px rgba(224, 247, 250, 0.3),          /* return to moderate glow */
                     0 -13px 26px 6px rgba(145, 255, 255, 0.25),     /* return to moderate flame */
                     0 -24px 48px 0px rgba(179, 234, 255, 0.2),      /* return to moderate aura */
                     0 -1px 4px 0px rgba(255, 255, 255, 0.5),        /* return to moderate core */
                     0 2px 6px 0px rgba(179, 234, 255, 0.15);        /* return to moderate bottom */
             }
         }


        /* Ensure form content stays above the layers */
        .lp-form-section > * {
            position: relative;
            z-index: 1; /* Content stays on top */
        }

        /* Form step styling */
        .form-step {
            margin-bottom: 30px;
        }

        .form-step h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            padding-bottom: 15px;
            text-align: center;
            font-weight: 500;
        }
        
        /* Progress bar styling */
        .progress-container {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            height: 8px;
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
        }
        
        .progress-bar {
            height: 100%;
            background-color: #91FFFF;
            border-radius: 10px;
            transition: width 0.8s ease-in-out;
            box-shadow: 0 0 10px rgba(145, 255, 255, 0.5);
            position: relative;
        }
        
        /* Progress bar animation */
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                        transparent, 
                        rgba(255, 255, 255, 0.4), 
                        transparent);
            animation: progressShimmer 2s infinite;
        }
        
        @keyframes progressShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Radio button styling */
        .radio-group {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .radio-option {
            position: relative;
            border-radius: 12px;
            padding: 18px;
            cursor: pointer;
            background-color: black;
            box-shadow: 0 4px 4px rgba(255, 255, 255, 0.25);
            transition: all 0.3s ease-in-out;
            border: 1px solid rgba(145, 255, 255, 0.1);
        }
        
        .radio-option:hover {
            border-color: rgba(145, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 12px rgba(145, 255, 255, 0.15);
        }

        .radio-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .radio-option label {
            display: block;
            font-weight: 500;
            cursor: pointer;
            padding-left: 30px;
            position: relative;
            color: #e0e0e0;
        }

        .radio-option label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.30);
        }

        .radio-option input[type="radio"]:checked {
            color: #91FFFF;
            width: 100%;
            height: 100%;
            background-color: #91FFFF;
            box-shadow: 0px 0px 8px #91ffff;
        }

        .radio-option input[type="radio"]:checked + label:before {
            border-color: #91FFFF;
            box-shadow: 0 0 10px rgba(145, 255, 255, 0.2);
        }

        .radio-option input[type="radio"]:checked + label:after {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #91FFFF;
            box-shadow: 0 0 5px rgba(145, 255, 255, 0.8);
        }

        /* Form inputs styling */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #91FFFF;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(145, 255, 255, 0.2);
            border-radius: 8px;
            font-size: 16px;
            color: #ffffff;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #91FFFF;
            outline: none;
            box-shadow: 0 0 15px rgba(145, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2391FFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
            padding-right: 40px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        
        /* Fix dropdown option colors */
        .form-group select option {
            background-color: #2a2a2a;
            color: #ffffff;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Checkbox styling */
        .checkbox-group,
        .radio-option {
            display: flex;
            align-items: center;
        }

        .checkbox-group input[type="checkbox"],
        .radio-option input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        
        .checkbox-group label,
        .radio-option label {
            position: relative;
            padding-left: 35px;
            cursor: pointer;
            color: #e0e0e0;
            font-weight: normal;
            display: inline-block;
        }
        
        .checkbox-group label:before,
        .radio-option label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 22px;
            height: 22px;
            border: 1px solid rgba(145, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        
        .checkbox-group input[type="checkbox"]:checked + label,
        .radio-option input[type="checkbox"]:checked + label {
            color: #91FFFF;
        }
        
        .checkbox-group input[type="checkbox"]:checked + label:before,
        .radio-option input[type="checkbox"]:checked + label:before {
            border-color: #91FFFF;
            background-color: rgba(145, 255, 255, 0.1);
            box-shadow: 0 0 10px rgba(145, 255, 255, 0.3);
        }
        
        .checkbox-group input[type="checkbox"]:checked + label:after,
        .radio-option input[type="checkbox"]:checked + label:after {
            content: '';
            position: absolute;
            left: 8px;
            top: 4px;
            width: 6px;
            height: 12px;
            border: solid #91FFFF;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        /* Disabled checkbox styling */
        .radio-option input[type="checkbox"]:disabled + label {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Selection counter styling */
        .selection-counter {
            color: rgba(145, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 10px;
        }

        /* Navigation buttons */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        button.next-step,
        button.prev-step,
        button.submit-button {
            padding: 15px 30px;
            border-radius: 50px; /* Pill-shaped buttons */
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        button.next-step {
            background-color: #91FFFF;
            color: #1e1f21; /* Dark text on light button */
            margin-left: auto;
            box-shadow: 0 0 15px rgba(145, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        button.prev-step {
            background-color: transparent;
            color: #e0e0e0;
            border: 1px solid rgba(145, 255, 255, 0.3);
        }

        button.submit-button {
            background-color: #91FFFF;
            color: #1e1f21; /* Dark text on light button */
            margin-left: auto;
            box-shadow: 0 0 15px rgba(145, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* Add glowing effect on hover */
        button.next-step:hover,
        button.submit-button:hover {
            background-color: #a7ffff;
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(145, 255, 255, 0.8);
        }
        
        button.next-step:active,
        button.submit-button:active {
            transform: translateY(1px);
            box-shadow: 0 0 10px rgba(145, 255, 255, 0.5);
        }

        button.prev-step:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: #91FFFF;
            color: #91FFFF;
        }
        
        /* Required field indicator */
        .required {
            color: #e74c3c;
        }

        /* Footer */
        .lp-footer {
            text-align: center;
            padding: 30px 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            border-top: 1px solid rgba(145, 255, 255, 0.1);
            margin-top: 20px;
        }
        
        /* Limited spots indicator */
        .limited-spots {
            text-align: center;
            margin: 40px auto 20px;
            padding: 10px 20px;
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            color: white;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: 1px solid rgba(145, 255, 255, 0.2);
            text-transform: uppercase;
        }
        
        /* Pulsing dot */
        .pulse-dot {
            width: 10px;
            height: 10px;
            background-color: #91FFFF;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            position: relative;
        }
        
        .pulse-dot::before,
        .pulse-dot::after {
            content: '';
            position: absolute;
            border: 1px solid #91FFFF;
            left: -3px;
            right: -3px;
            top: -3px;
            bottom: -3px;
            border-radius: 50%;
            animation: pulse 2s linear infinite;
            opacity: 0;
        }
        
        .pulse-dot::after {
            animation-delay: 1s;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .lp-header h1 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            
            .lp-header {
                padding: 50px 20px 30px;
            }
            
            .lp-form-section {
                padding: 25px;
                margin-bottom: 30px;
            }
            
            .radio-group {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .lp-subtitle-container {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .lp-subtitle-item:not(:last-child)::after {
                display: none;
            }
            
            .form-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            button.prev-step,
            button.next-step,
            button.submit-button {
                width: 100%;
                margin: 0;
            }
            
            .success-details {
                max-width: 100%;
                padding: 1rem;
            }
            
            .limited-spots {
                margin: 30px auto 15px;
                font-size: 0.8rem;
                padding: 8px 15px;
            }
        }
        
        /* Small mobile devices */
        @media (max-width: 480px) {
            .lp-header h1 {
                font-size: 2rem;
            }
            
            .radio-option {
                padding: 15px;
            }
            
            .success-heading {
                font-size: 2rem;
            }
            
            .success-animation {
                height: 80px;
                width: 80px;
            }
            
            .checkmark {
                width: 80px;
                height: 80px;
            }
        }
/* Animation styles for radio options */
.radio-option {
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
}

.option-pressed {
    box-shadow: inset 2px 4px 4px rgba(145, 255, 255, 0.4), 0 0 15px rgba(145, 255, 255, 0.3);
    transform: scale(0.995);
    background-color: rgba(10, 10, 10, 0.9) !important;
    border-color: #91FFFF !important;
}

.option-pressed::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #91FFFF;
    transform: rotate(45deg);
    z-index: 1;
}

.option-pressed::before {
    content: '✓';
    position: absolute;
    top: 3px;
    right: 3px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.option-pressed label {
    color: #91FFFF !important;
}

/* Form step transitions */
.form-step {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

/* Submit button animation */
.submit-button.submitting {
    background: linear-gradient(to right, rgba(145, 255, 255, 0.8) 0%, rgba(145, 255, 255, 0.3) 50%, rgba(145, 255, 255, 0.8) 100%);
    background-size: 200% 100%;
    animation: loading-gradient 1.5s infinite linear;
}

@keyframes loading-gradient {
    0% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Success screen styling */
.success-screen {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.8s ease-out;
}

.success-heading {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: #91FFFF;
    text-shadow: 0 0 10px rgba(145, 255, 255, 0.5);
    animation: pulseText 2s infinite alternate ease-in-out;
}

@keyframes pulseText {
    from { text-shadow: 0 0 10px rgba(145, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(145, 255, 255, 0.8); }
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.success-details {
    background-color: rgba(145, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 80%;
    text-align: left;
    border: 1px solid rgba(145, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(145, 255, 255, 0.1);
}

.success-details h3 {
    color: #91FFFF;
    margin-top: 0;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.success-details ol {
    padding-left: 1.5rem;
}

.success-details li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Checkmark Animation */
.success-animation {
    margin: 0 auto;
    height: 100px;
    width: 100px;
    position: relative;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #91FFFF;
    stroke-miterlimit: 10;
    box-shadow: 0 0 30px rgba(145, 255, 255, 0.6);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    position: relative;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #91FFFF;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 50px rgba(145, 255, 255, 0.1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Apply specific styling to form once submitted */
.form-submitted {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}