 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        /* Bolhas laranjas desfocadas no fundo */
        .background-bubbles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            animation: float-bubble 20s infinite ease-in-out;
        }

        .bubble:nth-child(1) {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #ff4e00 0%, #ff6b2b 40%, transparent 70%);
            left: 10%;
            top: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .bubble:nth-child(2) {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ff6b2b 0%, #ff8f5a 40%, transparent 70%);
            right: 15%;
            top: 20%;
            animation-delay: -8s;
            animation-duration: 30s;
        }

        .bubble:nth-child(3) {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #ff8f5a 0%, #ff4e00 40%, transparent 70%);
            left: 60%;
            bottom: 15%;
            animation-delay: -15s;
            animation-duration: 35s;
        }

        .bubble:nth-child(4) {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #ff4e00 0%, #ff6b2b 40%, transparent 70%);
            left: 20%;
            bottom: 25%;
            animation-delay: -5s;
            animation-duration: 28s;
        }

        .bubble:nth-child(5) {
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, #ff6b2b 0%, #ff4e00 40%, transparent 70%);
            right: 25%;
            bottom: 35%;
            animation-delay: -12s;
            animation-duration: 32s;
        }

        .bubble:nth-child(6) {
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, #ff8f5a 0%, #ff6b2b 40%, transparent 70%);
            left: 45%;
            top: 30%;
            animation-delay: -3s;
            animation-duration: 26s;
        }

        .bubble:nth-child(7) {
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, #ff4e00 0%, #ff8f5a 40%, transparent 70%);
            right: 5%;
            bottom: 10%;
            animation-delay: -18s;
            animation-duration: 38s;
        }

        .bubble:nth-child(8) {
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, #ff6b2b 0%, #ff4e00 40%, transparent 70%);
            left: 5%;
            top: 60%;
            animation-delay: -7s;
            animation-duration: 24s;
        }

        @keyframes float-bubble {
            0%, 100% {
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 0.1;
            }
            25% {
                transform: translateY(-30px) translateX(20px) scale(1.1);
                opacity: 0.15;
            }
            50% {
                transform: translateY(-10px) translateX(-15px) scale(0.9);
                opacity: 0.2;
            }
            75% {
                transform: translateY(-40px) translateX(10px) scale(1.05);
                opacity: 0.12;
            }
        }

        .container {
            position: relative;
            max-width: 900px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            padding: 40px 30px;
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 78, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            perspective: 2700px;
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        .container .cover {
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 50%;
            z-index: 98;
            transition: all 1s ease;
            transform-origin: left;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            border-radius: 0 20px 20px 0;
            overflow: hidden;
        }

        .container .cover .front {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        .container .cover .text {
            position: absolute;
            z-index: 10;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .container .cover .text::before {
            content: '';
            position: absolute;
            height: 100%;
            width: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 78, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 78, 0, 0.05) 0%, transparent 50%);
        }

        .cover .text .text-1,
        .cover .text .text-2 {
            z-index: 20;
            font-weight: 700;
            color: white;
            text-align: center;
            line-height: 1.3;
        }

        .cover .text .text-1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .cover .text .text-2 {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.8;
            color: white;
        }

        .container .forms {
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        .container .form-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .form-content .login-form {
            width: calc(100% / 2 - 25px);
        }

        .forms .form-content .title {
            position: relative;
            font-size: 28px;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }

        .forms .form-content .title:before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 3px;
            width: 30px;
            background: #ff4e00;
            border-radius: 2px;
        }

        .forms .form-content .input-boxes {
            margin-top: 35px;
        }

        .forms .form-content .input-box {
            display: flex;
            align-items: center;
            height: 55px;
            width: 100%;
            margin: 15px 0;
            position: relative;
        }

        .form-content .input-box input {
            height: 100%;
            width: 100%;
            outline: none;
            border: none;
            padding: 0 45px;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            background: transparent;
            color: #ff4e00;
        }

        .form-content .input-box input:focus,
        .form-content .input-box input:valid {
            border-color: #ff4e00;
        }

        .form-content .input-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-content .input-box i {
            position: absolute;
            color: #ff4e00;
            font-size: 18px;
            left: 15px;
        }

        .forms .form-content .text {
            font-size: 14px;
            font-weight: 500;
            color: #ff4e00;
        }

        .forms .form-content .text a {
            text-decoration: none;
            color: white;
            font-weight: 600;
        }

        .forms .form-content .text a:hover {
            text-decoration: underline;
            color: #ff4e00;
        }

        .forms .form-content .button {
            color: white;
            margin-top: 35px;
        }

        .forms .form-content .button input {
            color: white;
            background: #ff4e00;
            border-radius: 12px;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
        }

        .forms .form-content .button input:hover {
            background: #e63d00;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 78, 0, 0.4);
        }

        .error-message {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #dc2626;
            padding: 12px 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            text-align: center;
            font-weight: 500;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo-container img {
            max-width: 180px;
            height: auto;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .container .cover {
                display: none;
            }

            .form-content .login-form {
                width: 100%;
            }

            .container {
                padding: 40px 25px;
            }

            .cover .text .text-1 {
                font-size: 1.8rem;
            }

            .bubble {
                filter: blur(80px);
                opacity: 0.1;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            .container {
                padding: 30px 20px;
            }

            .forms .form-content .title {
                font-size: 24px;
            }

            .cover .text .text-1 {
                font-size: 1.6rem;
            }

            .form-content .input-box input {
                padding: 0 40px;
                font-size: 15px;
            }

            .bubble {
                filter: blur(60px);
                opacity: 0.08;
            }
        }

        /* Decorações extras */
        .cover .text::after {
            content: '';
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: rgba(255, 78, 0, 0.6);
            border-radius: 1px;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border: 1px solid rgba(255, 78, 0, 0.2);
            border-radius: 50%;
            animation: float-slow 12s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 20%;
        }

        .floating-circle:nth-child(2) {
            width: 40px;
            height: 40px;
            bottom: 30%;
            left: 15%;
            animation-delay: -6s;
        }

        @keyframes float-slow {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-10px) rotate(180deg); opacity: 0.3; }
        }

        /* Efeito de brilho adicional */
        .container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.5;
        }