        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            height: 100%;
            background: url('https://i.ibb.co/5hd1vyGL/mosaico-mew.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.97);
            z-index: 1;
            pointer-events: none;
        }

        .floating-blob {
            content: "";
            position: fixed;
            height: 2000px;
            width: 2000px;
            top: -10%;
            right: 100%;
            transform: translateY(-50%);
            background: url('https://i.ibb.co/YFTLBw4B/circulo-gigante6.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
            animation: blobEntrance 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .container {
            width: 100%;
            padding: 40px 0 40px 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-height: 100vh;
            position: relative;
            z-index: 3;
        }

        .content-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
            width: auto;
            margin-right: 0;
            padding-right: 20px;
            animation: contentPush 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .image-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex: 0 0 auto;
        }

        .logo-above-student {
            width: 220px;
            height: auto;
            margin-bottom: 16px;
            display: block;
        }

        .student-image {
            width: 100%;
            max-width: 350px;
            height: auto;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
        }

        .student-image:hover {
            transform: scale(1.02);
        }

        .form-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex: 0 0 auto;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(25px);
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            width: 100%;
            max-width: 300px;
        }

        .logo {
            width: 180px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
        }

        .mobile-footer {
            display: none;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }

        .mobile-footer .logo {
            width: 242px;
            margin: 0 auto;
        }

        .form-title {
            font-size: 22px;
            font-weight: 600;
            color: #1d1d1f;
            text-align: center;
            margin-bottom: 24px;
            letter-spacing: -0.3px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #1d1d1f;
            margin-bottom: 5px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e5e7;
            border-radius: 10px;
            font-size: 14px;
            background: #fff;
            transition: all 0.3s ease;
            outline: none;
        }

        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            color: #666;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 4px;
        }

        .password-toggle svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .password-toggle:hover {
            color: #007aff;
        }

        .password-toggle:focus {
            outline: none;
            color: #007aff;
        }

        .form-input:focus {
            border-color: #007aff;
            box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
            transform: translateY(-1px);
        }

        .form-input:hover {
            border-color: #007aff;
        }

        .forgot-password {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }

        .forgot-password a {
            color: #007aff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: #0056cc;
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #007aff, #0056cc);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 18px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn.loading {
            pointer-events: none;
        }

        .loading-spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }

        .terms-text {
            font-size: 10px;
            color: #666;
            text-align: center;
            margin-top: 16px;
            line-height: 1.4;
        }

        .terms-text a {
            color: #007aff;
            text-decoration: none;
        }

        .terms-text a:hover {
            text-decoration: underline;
        }

        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            text-align: center;
            font-weight: 500;
        }

        .error-message {
            display: none;
            background: #f8d7da;
            color: #721c24;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
            text-align: center;
            font-weight: 500;
        }

        /* Estilos do botão do WhatsApp */
        .btn__whatsapp {
            background: #01AB4C;
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 999;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
            font-size: 40px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn__whatsapp:hover {
            transform: scale(1.1);
            text-decoration: none;
        }

        .btn__whatsapp img {
            width: 40px;
            height: 40px;
        }

        .rwb-tooltip {
            position: absolute;
            right: 70px;
            background: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .btn__whatsapp:hover .rwb-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }

        /* Animação de pulso */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(1, 171, 76, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(1, 171, 76, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(1, 171, 76, 0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Animações */

        @keyframes blobEntrance {
            0% {
                right: 100%;
                transform: translateY(-50%) scale(0.8);
                opacity: 0.8;
            }
            60% {
                right: 45%;
                transform: translateY(-50%) scale(1.05);
                opacity: 1;
            }
            100% {
                right: 48%;
                transform: translateY(-50%) scale(1);
                opacity: 1;
            }
        }

        @keyframes contentPush {
            0% {
                transform: translateX(0);
                opacity: 0.7;
            }
            40% {
                transform: translateX(-100px);
                opacity: 0.8;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        @keyframes blobEntranceMobile {
            from {
                transform: translateX(50%) translateY(-100%);
            }
            to {
                transform: translateX(50%) translateY(-50%);
            }
        }

        /* Responsivo */
        @media (max-width: 768px) {
            body {
                padding: 20px 0;
            }

            .floating-blob {
                height: 1200px;
                width: 1200px;
                top: -30%;
                right: 50%;
                transform: translateX(50%) translateY(-100%);
                animation: blobEntranceMobile 1.8s ease-in-out forwards;
            }

            .container {
                justify-content: center;
                align-items: flex-end;
                padding: 20px 20px 60px;
            }

            .content-wrapper {
                flex-direction: column;
                gap: 0;
                max-width: 100%;
            }

            .image-section {
                display: none;
            }

            .form-section {
                animation: slideInRight 0.8s ease-out 0.2s both;
            }

            .form-container {
                padding: 28px 24px;
                max-width: 100%;
                position: relative;
            }

            .form-container::before {
                content: '';
                display: block;
                width: 220px;
                height: 80px;
                background-image: url('https://i.ibb.co/rKcZgGLD/logo-plataforma-mew.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                margin: 0 auto 30px;
            }

            .form-title {
                font-size: 22px;
                margin-bottom: 24px;
            }

            .mobile-footer {
                display: none;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px 0;
            }

            .container {
                padding: 15px;
            }

            .content-wrapper {
                gap: 0;
            }

            .form-container {
                padding: 24px 20px;
                border-radius: 14px;
            }

            .form-container::before {
                width: 200px;
                height: 70px;
                margin: 0 auto 25px;
            }

            .form-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .form-input {
                padding: 14px 16px;
                font-size: 16px;
            }

            .submit-btn {
                padding: 14px;
                font-size: 15px;
            }
        }
        