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

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: white;
            min-height: 100vh;
            display: flex;
            position: relative;
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #e0e0e0;
            border-top: 4px solid #1a5276;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* LADO ESQUERDO - IMAGEM COM OVERLAY AZUL */
        .image-side {
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, #0a2a44 0%, #1a5276 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Conteúdo da imagem */
        .image-content {
            position: relative;
            z-index: 1;
            color: white;
            padding: 60px 50px;
            width: 100%;
            max-width: 550px;
            text-align: left;
        }

        .main-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .description-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .description-text strong {
            font-weight: 600;
        }

        .divider {
            width: 60px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            margin: 30px 0;
        }

        .benefits-list {
            margin-top: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .benefit-item i {
            width: 24px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .benefit-item span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* LADO DIREITO - FORMULÁRIO */
        .form-side {
            width: 480px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 48px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
        }

        /* Logo */
        .logo {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            text-align: center;
        }

        .logo span {
            background: linear-gradient(135deg, #0a2a44 0%, #1a5276 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo i {
            background: linear-gradient(135deg, #0a2a44 0%, #1a5276 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 8px;
        }

        /* Subtítulos */
        .subtitle-main {
            color: #1a1a2e;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
        }

        .subtitle-welcome {
            color: #888;
            font-size: 14px;
            margin-bottom: 32px;
            text-align: center;
        }

        /* Mensagens */
        .error-message, .warning-message, .success-message {
            padding: 12px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 13px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .error-message {
            background: #fee2e2;
            color: #dc2626;
            border-left: 4px solid #dc2626;
        }

        .warning-message {
            background: #fef3c7;
            color: #d97706;
            border-left: 4px solid #d97706;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }

        .success-message a {
            color: #155724;
            word-break: break-all;
        }

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

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #555;
            margin-bottom: 8px;
        }

        .form-group label i {
            margin-right: 6px;
            color: #1a5276;
        }

        .input-wrapper {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 0 16px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .input-wrapper:hover {
            background: #f1f3f5;
        }

        .input-wrapper:focus-within {
            background: white;
            border-color: #1a5276;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }

        .bullet-icon {
            font-size: 18px;
            color: #1a5276;
            font-weight: bold;
            margin-right: 12px;
            user-select: none;
        }

        .input-wrapper input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 14px 0;
            font-size: 15px;
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        .input-wrapper input::placeholder {
            color: #adb5bd;
            font-weight: 400;
        }

        /* Botão */
        .login-btn {
            width: 100%;
            background: linear-gradient(135deg, #0a2a44 0%, #1a5276 100%);
            border: none;
            padding: 14px;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            font-family: 'Inter', sans-serif;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(26, 82, 118, 0.3);
        }

        .login-btn i {
            margin-right: 8px;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 10px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            color: #666;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #091E3E;
        }

        .forgot-password {
            color: #091E3E;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .forgot-password:hover {
            color: #00a8e8;
            text-decoration: underline;
        }

        .password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
            font-size: 1.2rem;
            background: none;
            border: none;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-recover {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .btn-close-modal {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 15px;
        }

        .icon-recover {
            font-size: 60px;
            color: #1a5276;
            margin-bottom: 20px;
        }

        .btn-recover {
            width: 100%;
            padding: 14px;
            background: #1a5276;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        @media (max-width: 900px) {
            .image-side {
                display: none;
            }
            .form-side {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
        }