 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: var(--cor-gradiente-software);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-container {
            background-color: rgba(255, 255, 255, 1);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 350px;
            animation: fadeIn 0.8s ease-in-out;
        }

        .login-container h2 {
            text-align: center;
            color: var(--cor-software);
            margin-bottom: 20px;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .input-group label {
            color: #fff;
            font-size: 14px;
            display: block;
            margin-bottom: 5px;
        }

        .input-group input {
            width: 100%;
            padding: 10px;
            border: solid 1px #ddd;
            border-radius: 8px;
            outline: none;
            color: #000;
            font-size: 14px;
            transition: background 0.3s ease;
            text-align: center;
            font-size: 12pt;
        }

        .input-group input:focus {
            background: rgba(255, 255, 255, 0.3);
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            background: var(--cor-gradiente-software);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .btn-login:hover {
            background: var(--cor-gradiente-software-hover);
            transform: scale(1.02);
        }

        .extra-links {
            text-align: center;
            margin-top: 15px;
        }

        .extra-links a {
            color: #fff;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .extra-links a:hover {
            color: #FFD700;
        }

        #texto_resultado{
            position: relative;
            margin-bottom: 10px;
            color: #e21818;
            font-size: 10pt;
            text-align: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsividade */
        @media (max-width: 400px) {
            .login-container {
                padding: 30px 20px;
                width: 90%;
            }
        }