body {
            background: #0f1117;
            min-height: 100vh;
        }

        .signup-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: stretch;
        }

        /* Left Panel — Dark */
        .signup-left {
            flex: 1;
            background: #131820;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 64px;
            position: relative;
            overflow: hidden;
        }

        .signup-left::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(126, 174, 154, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .signup-left::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Right Panel */
        .signup-right {
            width: 440px;
            background: #1a2030;
            border-left: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 32px 40px;
        }

        .plan-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(126, 174, 154, 0.12);
            color: #7eae9a;
            border: 1px solid rgba(126, 174, 154, 0.2);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(126, 174, 154, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7eae9a;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-text strong {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            color: #f1f5f9;
        }

        .feature-text span {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        .price-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px 24px;
            margin-top: 32px;
        }

        /* Form Styles */
        .form-label {
            font-weight: 600;
            font-size: 0.875rem;
            color: #94a3b8;
            margin-bottom: 6px;
        }

        .form-control {
            border: 1.5px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 9px 16px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.06);
            color: #f1f5f9;
        }

        .form-control::placeholder {
            color: #64748b;
        }

        .form-control:focus {
            border-color: #7eae9a;
            box-shadow: 0 0 0 3px rgba(126, 174, 154, 0.15);
            background: rgba(255, 255, 255, 0.08);
            color: #f1f5f9;
        }

        .input-group .form-control {
            border-right: none;
            border-radius: 12px 0 0 12px;
        }

        .input-group-text {
            background: rgba(255, 255, 255, 0.06);
            border: 1.5px solid rgba(255, 255, 255, 0.1);
            border-left: none;
            border-radius: 0 12px 12px 0;
            color: #64748b;
            cursor: pointer;
            transition: color 0.2s;
        }

        .input-group-text:hover {
            color: #7eae9a;
        }

        .input-group:focus-within .form-control,
        .input-group:focus-within .input-group-text {
            border-color: #7eae9a;
            box-shadow: none;
        }

        .input-group:focus-within {
            box-shadow: 0 0 0 3px rgba(126, 174, 154, 0.15);
            border-radius: 12px;
        }

        .btn-signup {
            background: linear-gradient(135deg, #7eae9a 0%, #6a9b88 100%);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 11px 24px;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: all 0.2s ease;
            box-shadow: 0 4px 20px rgba(126, 174, 154, 0.3);
        }

        .btn-signup:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(126, 174, 154, 0.45);
            color: white;
        }

        .login-link {
            color: #7eae9a;
            font-weight: 600;
            text-decoration: none;
        }

        .login-link:hover {
            color: #9fccb8;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.78rem;
            color: #64748b;
        }

        .trust-badge i {
            color: #7eae9a;
        }

        .back-home {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.06);
            padding: 8px 14px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.2s;
            z-index: 10;
        }

        .back-home:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #7eae9a;
        }

        @media (max-width: 991px) {
            .signup-left {
                display: none;
            }

            .signup-right {
                width: 100%;
                border-left: none;
                padding: 48px 24px;
                justify-content: flex-start;
                padding-top: 80px;
            }
        }


        .loader {
  width: 16px;
  height: 16px;
  position: relative;
  left: -32px;
  border-radius: 50%;
  color: #fff;
  background: currentColor;
  box-shadow: 32px 0 , -32px 0 ,  64px 0;
}

.loader::after {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #7eae9a;
  animation: move 3s linear infinite alternate;
}

@keyframes move {
  0% , 5%{
    left: -32px;
    width: 16px;
  }
  15% , 20%{
    left: -32px;
    width: 48px;
  }
  30% , 35%{
    left: 0px;
    width: 16px;
  }
  45% , 50%{
    left: 0px;
    width: 48px;
  }
  60% , 65%{
    left: 32px;
    width: 16px;
  }

  75% , 80% {
    left: 32px;
    width: 48px;
  }
  95%, 100% {
    left: 64px;
    width: 16px;
  }