        body {
            background: linear-gradient(135deg, #104e8b, #02678F);
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            overflow: hidden;
        }
        .login-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 40px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            text-align: center;
            color: #fff;
        }
        .login-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #00aaff;
        }
        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }
        .form-label {
            font-size: 14px;
            color: #ddd;
            margin-bottom: 5px;
            display: block;
        }
        .form-control {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            outline: none;
        }
        .form-control::placeholder {
            color: #ccc;
        }
        .remember-me {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #ccc;
            font-size: 12px;
        }
        .remember-me input {
            margin-right: 5px;
        }
        .forgot-password {
            color: #00aaff;
            text-decoration: none;
            font-size: 12px;
        }
        .btn-login {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background: #00aaff;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }
        .btn-login:hover {
            background: #2ecc71;
        }

        .error-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ff3333;
            color: white;
            text-align: center;
            padding: 10px 0;
            display: none;
            z-index: 1000; /* Garante que fique acima de outros elementos */
        }

        .error-message {
            display: inline-block;
        }

        .error-bar.active {
            display: block;
        }

        