* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #a855f7;
            --primary-dark: #9333ea;
            --bg-dark: #1a1a2e;
            --bg-darker: #0f0f1e;
            --card-bg: #2d2d44;
            --card-bg-light: #3d3d54;
            --text-light: #f0f0f0;
            --text-muted: #a0a0b0;
            --border-color: #3d3d54;
            --input-bg: #000000;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            color: var(--text-light);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        /* Background glow effects */
        body::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        body::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 968px) {
            .container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .left-section {
                display: none;
            }
        }

        /* Left Section */
        .left-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .logo-container {
            margin-bottom: 2rem;
        }

        .logo-circle {
            width: 4rem;
            height: 4rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
        }

        .logo-circle svg {
            width: 2rem;
            height: 2rem;
            color: white;
        }

        .left-section h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .left-section p {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .referral-section {
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(45, 45, 68, 0.3);
            border-radius: 1rem;
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        .referral-section h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .referral-section p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Right Section - Login Card */
        .login-card {
            background: rgba(45, 45, 68, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            padding: 3rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .card-logo {
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
        }

        .card-logo svg {
            width: 1.5rem;
            height: 1.5rem;
            color: white;
        }

        .card-header h2 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 0;
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
        }

        .input-icon svg {
            width: 1.25rem;
            height: 1.25rem;
            color: white;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem 0.875rem 4rem;
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 1.125rem;
            height: 1.125rem;
            cursor: pointer;
        }

        .forgot-password {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
            margin-bottom: 1.5rem;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 60px rgba(168, 85, 247, 0.3);
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .signup-link {
            text-align: center;
            font-size: 0.875rem;
        }

        .signup-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        /* Correção para dispositivos móveis */
        @media (max-width: 768px) {
            .whatsapp-btn {
                bottom: 8rem;
                right: 1rem;
                width: 3rem;
                height: 3rem;
            }

            .whatsapp-btn svg {
                width: 1.5rem;
                height: 1.5rem;
            }
        }

        /* garante que as partículas fiquem no fundo */
        #tsparticles {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        }
        .container {
        position: relative;
        z-index: 1;
        }




        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                max-width: 100%;
                padding: 0 1rem;
            }

            .left-section {
                display: none;
            }

            .login-card {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }

            .card-header h2 {
                font-size: 1.25rem;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            .form-control {
                padding: 0.75rem 1rem 0.75rem 3.5rem;
                font-size: 0.9rem;
            }

            .input-icon {
                width: 2.5rem;
                height: 2.5rem;
            }

            .input-icon svg {
                width: 1rem;
                height: 1rem;
            }

            .btn-submit {
                padding: 0.875rem;
                font-size: 0.9rem;
            }


        }

        html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

* {
    max-width: 100%;
}
