        body, html {
            font-family: 'Poppins', sans-serif !important;
            background-color: #fff;
        }
        
        .container-login100 {
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }

        .wrap-login100 {
            width: 100%;
            max-width: 400px;
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            /* Sombra suave apenas para dar destaque se não for mobile */
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        @media (max-width: 576px) {
            .wrap-login100 {
                box-shadow: none;
                border: none;
                padding: 0;
            }
        }

        .login100-form-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #3e3e3e;
            font-size: 24px !important;
            text-align: center;
            margin-bottom: 30px;
            display: block;
        }

        .txt1 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #717171;
            line-height: 1.5;
            font-weight: 500;
            margin-bottom: 5px;
            display: block;
        }

        .input100 {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            color: #3e3e3e;
            line-height: 1.2;
            display: block;
            width: 100%;
            height: 48px;
            background: transparent;
            padding: 0 15px;
            border: none;
        }

        .wrap-input100 {
            width: 100%;
            position: relative;
            border: 1px solid #dcdcdc;
            border-radius: 4px;
            margin-bottom: 20px;
            background: #fff;
            transition: border-color 0.3s;
        }

        .wrap-input100:focus-within {
            border-color: #ea1d2c;
        }
        
        .focus-input100 {
            display: none;
        }

        .btn-show-pass {
            font-size: 15px;
            color: #999999;
            display: flex;
            align-items: center;
            position: absolute;
            height: 100%;
            top: 0;
            right: 15px;
            cursor: pointer;
        }
        
        .btn-show-pass:hover {
            color: #ea1d2c;
        }

        .login100-form-btn {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            color: #fff;
            line-height: 1.2;
            text-transform: none;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
            width: 100%;
            height: 48px;
            background-color: #ea1d2c;
            border-radius: 4px;
            transition: all 0.4s;
            border: none;
            font-weight: 600;
            cursor: pointer;
            box-shadow: none;
        }

        .login100-form-btn:hover {
            background-color: #c2111f;
            transform: none;
            box-shadow: none;
        }

        .alert {
            border-radius: 10px;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .label-checkbox100 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #717171;
        }