
        .auth-section {
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
        }

        .auth-container {
            width: 100%;
            max-width: 450px;
        }

        .auth-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .auth-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            color: #1a3e72;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .auth-logo i {
            font-size: 2.5rem;
            color: #1a6db3;
        }

        .auth-title {
            font-size: 2rem;
            color: #1a3e72;
            margin-bottom: 10px;
        }

        .auth-subtitle {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #1a6db3;
            box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
        }

        .password-container {
            position: relative;
        }

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

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
            cursor: pointer;
        }

        .remember-me input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .forgot-password {
            color: #1a6db3;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .btn-auth {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
            color: #999;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
        }

        .auth-divider span {
            padding: 0 15px;
        }

        .auth-switch {
            margin-top: 25px;
            color: #666;
        }

        .auth-switch a {
            color: #1a6db3;
            font-weight: 600;
            text-decoration: none;
        }

        .auth-switch a:hover {
            text-decoration: underline;
        }

        .notification {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: none;
            align-items: center;
            gap: 12px;
        }

        .notification.error {
            background: #ffeaea;
            color: #d63031;
            border-left: 4px solid #d63031;
        }

        .notification.success {
            background: #eaffea;
            color: #27ae60;
            border-left: 4px solid #27ae60;
        }

        .notification i {
            font-size: 1.2rem;
        }

        @media (max-width: 576px) {
            .auth-section {
                padding: 24px 12px;
                min-height: calc(100vh - 120px);
            }

            .auth-card {
                padding: 24px 18px;
                border-radius: 16px;
            }

            .auth-logo {
                font-size: 1.4rem;
                margin-bottom: 20px;
            }

            .auth-logo i {
                font-size: 2rem;
            }

            .auth-title {
                font-size: 1.5rem;
            }

            .auth-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .form-control {
                padding: 12px 14px;
                font-size: 16px;
            }

            .btn-auth {
                padding: 14px;
                font-size: 1rem;
            }

            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .auth-links {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .planes-container {
                display: none;
            }
        }


.inl-8a0544b7{padding: 8px 20px;}
.inl-73599557{color: #1a6db3;}
.inl-0a741407{padding: 30px 0; background: #1a3e72;}
.inl-fe74fbde{text-align: center; color: #d0e2ff;}
