        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: 
                linear-gradient(135deg, rgba(26, 58, 143, 0.85) 0%, rgba(10, 30, 69, 0.85) 50%),
                url('../images/bg_login.png') center/cover fixed;
            background-blend-mode: multiply;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .container {
            display: flex;
            width: 85%;
            max-width: 1000px;
            height: 600px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(1px);
        }

        .left-panel {
            flex: 1;
            background-color: rgba(255, 255, 255, 0.75);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 40px;
            backdrop-filter: blur(5px);
        }

        .right-panel {
            flex: 1;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 40px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .logo {
            width: 220px;
            margin-bottom: 20px;
        }

        .form-container {
            width: 100%;
            max-width: 320px;
        }

        h1 {
            font-size: 24px;
            margin-bottom: 30px;
            text-align: center;
            color:rgb(0, 0, 0);
        }

        .input-group {
            position: relative;
            margin-bottom: 25px;
        }

        .input-group i {
            position: absolute;
            left: 18px;
            top: 18px;
            color: #7a7a7a;
        }

        input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 30px;
            background-color: #f8f9fa;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        input:focus {
            border-color: #0a3d91;
            box-shadow: 0 0 0 2px rgba(10, 61, 145, 0.2);
        }

        button {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 30px;
            background:rgb(0, 0, 0);
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .forgot-password a:hover {
            color: #0a3d91;
        }

        .welcome-text {
            text-align: center;
            max-width: 80%;
        }

        .welcome-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .welcome-text p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .security-badge {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 15px 25px;
            border-radius: 30px;
            margin-top: 20px;
        }

        .security-badge i {
            font-size: 24px;
            margin-right: 15px;
        }

        .security-badge span {
            font-size: 14px;
        }

        .animated-dots {
            position: absolute;
            bottom: 30px;
            display: flex;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: white;
            margin: 0 5px;
            opacity: 0.6;
        }

        .dot:nth-child(1) {
            animation: pulse 2s infinite;
        }

        .dot:nth-child(2) {
            animation: pulse 2s infinite 0.4s;
        }

        .dot:nth-child(3) {
            animation: pulse 2s infinite 0.8s;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.5); opacity: 1; }
            100% { transform: scale(1); opacity: 0.6; }
        }


        .success-message {
            background-color: rgba(76, 175, 80, 0.1); /* Verde claro */
            border-left: 4px solid #4CAF50; /* Verde escuro */
            color: #2e7d32; /* Verde mais escuro */
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .success-message i {
            margin-right: 10px;
            font-size: 16px;
        }
        /* Mensagem de erro */
        .error-message {
            background-color: rgba(255, 80, 80, 0.1);
            border-left: 4px solid #ff5050;
            color: #d32f2f;
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .error-message i {
            margin-right: 10px;
            font-size: 16px;
        }

        /* Animação de sucesso */
        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .success-box {
            background-color: white;
            width: 400px;
            height: 280px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: scale(0.7);
            transition: all 0.5s;
        }
 .success-text {
            font-size: 22px;
            color: #4CAF50;
            margin-top: -25px;
            font-weight: bold;
        }

        .success-message { 
            font-size: 13px;
            color: #555;
            margin-top: 10px;
            text-align: center; 
        }


        @keyframes circle-appear {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes checkmark-appear {
            0% { transform: translate(-50%, -60%) rotate(45deg) scale(0); }
            50% { transform: translate(-50%, -60%) rotate(45deg) scale(1.2); }
            100% { transform: translate(-50%, -60%) rotate(45deg) scale(1); }
        }

        .show-success {
            opacity: 1;
            visibility: visible;
        }

        .show-success .success-box {
            transform: scale(1);
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                height: auto;
                width: 95%;
            }

            .left-panel, .right-panel {
                padding: 30px 20px;
            }

            .right-panel {
                display: none;
            }

            .logo {
                width: 180px;
            }
        }
