       @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap');
        
        :root {
            --primary: #4F46E5;
            --primary-hover: #4338CA;
            --primary-light: #818CF8;
            --primary-soft: #EEF2FF;
            --secondary: #EC4899;
            --secondary-light: #FCE7F3;
            --accent: #06B6D4;
            --accent-light: #CFFAFE;
            --success: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
            --text: #111827;
            --text-light: #6B7280;
            --text-lighter: #9CA3AF;
            --border: #E5E7EB;
            --bg-gradient-start: #EEF2FF;
            --bg-gradient-end: #E0E7FF;
            --card-bg: rgba(255, 255, 255, 0.95);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito Sans', sans-serif;
            background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Elementos decorativos de fundo */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 90% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.05) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        /* Bolhas decorativas */
        .bubble {
            position: fixed;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: float 20s infinite ease-in-out;
        }

        .bubble-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.1));
            animation-delay: 0s;
        }

        .bubble-2 {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(79, 70, 229, 0.1));
            animation-delay: -5s;
        }

        .bubble-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
            animation: pulse 8s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-30px, 30px) rotate(120deg); }
            66% { transform: translate(30px, -30px) rotate(240deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
        }

        .container {
            width: 100%;
            max-width: 1100px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        /* Lado esquerdo - Apresentação */
        .hero-section {
            flex: 1;
            min-width: 300px;
            color: var(--text);
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 800;
            box-shadow: var(--shadow-lg);
            transform: rotate(-5deg);
            transition: transform 0.3s ease;
        }

        .logo-icon:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .logo-text h1 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        .hero-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 450px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .feature-text {
            font-weight: 600;
            color: var(--text);
        }

        .feature-text small {
            display: block;
            font-size: 12px;
            color: var(--text-lighter);
            font-weight: 400;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            max-width: 350px;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 16px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* Lado direito - Formulário de Login */
        .login-section {
            flex: 1;
            min-width: 380px;
            max-width: 450px;
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .login-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 40px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .login-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .login-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .login-header p {
            color: var(--text-light);
            font-size: 15px;
        }

        .login-header p a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .login-header p a:hover {
            color: var(--secondary);
        }

        /* Formulário */
        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-label i {
            color: var(--primary);
            margin-right: 6px;
            font-size: 12px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            color: var(--text-lighter);
            font-size: 16px;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-control {
            width: 100%;
            padding: 16px 48px 16px 48px;
            border: 2px solid var(--border);
            border-radius: 18px;
            font-size: 16px;
            font-family: inherit;
            background: white;
            transition: all 0.3s ease;
            color: var(--text);
            text-align: center;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px var(--primary-soft);
        }

        .form-control:focus + .input-icon {
            color: var(--primary);
        }


        /* Lembrar e Esqueci senha */
        .form-options {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            text-align: center;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .remember-me span {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        .forgot-password {
            font-size: 14px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: var(--secondary);
        }

        /* Botão de login */
        .btn-login {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 18px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            margin-bottom: 24px;
        }

        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
            background: linear-gradient(135deg, var(--primary-hover), #DB2777);
        }

        .btn-login i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .btn-login:hover i {
            transform: translateX(5px);
        }

        /* Divisor */
        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            color: var(--text-lighter);
            font-size: 14px;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        /* Login social */
        .social-login {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .social-btn {
            flex: 1;
            padding: 14px;
            border: 2px solid var(--border);
            border-radius: 16px;
            background: white;
            color: var(--text);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            border-color: var(--primary);
            background: var(--primary-soft);
            transform: translateY(-2px);
        }

        .social-btn i {
            font-size: 18px;
        }

        .social-btn.google i { color: #DB4437; }
        .social-btn.facebook i { color: #4267B2; }
        .social-btn.apple i { color: #000000; }

        /* Registro */
        .signup-prompt {
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
        }

        .signup-prompt a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .signup-prompt a:hover {
            color: var(--secondary);
        }

        /* Responsivo */
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
            }

            .hero-section {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-description {
                text-align: center;
            }

            .features {
                justify-content: center;
            }

            .login-section {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 30px 20px;
            }

            .login-section {
                min-width: auto;
            }

            .hero-title {
                font-size: 32px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .social-login {
                flex-direction: column;
            }
        }

        /* Loading state (opcional) */
        .btn-loading {
            position: relative;
            pointer-events: none;
            opacity: 0.8;
        }

        .btn-loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Mensagem de erro (opcional) */
        .error-message {
            background: #FEE2E2;
            border: 1px solid #FCA5A5;
            color: #B91C1C;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .error-message i {
            font-size: 16px;
        }

#code-verify{
  display: none;
}

.verification-container {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
  justify-content: center;
  margin-top: 16px;
}
.verification-container input {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s;
  background-color: #f9f9f9;
  caret-color: #8B7CF6; /* Custom caret color */
  animation: zoomIn 0.1s ease-out;
  user-select: none; /* Make fields unselectable */
}
.verification-container input:focus {
  border-color: #8B7CF6;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.number-phone {
    color: var(--primary);
    font-weight: 700;
    display: block;
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
}
.text-center{
  text-align:center;
}

.d-flex {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    align-items: center;
}

.btn-modern {
    background: #8B7CF6;
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: #9e91ff;
}

.btn-modern:disabled {
    background: #e4e1f9;
    opacity: 0.7;
    color: #111827;
}